giflib: add patch to restore deprecated GifQuantizeBuffer for compatibility

This commit is contained in:
Helmut Pozimski 2019-04-15 19:10:16 +02:00
parent 59cd30db80
commit 09af97704a
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,16 @@
Source: Gentoo, written by Gary Stein
Upstream: No
Reason: restores deprecated GifQuantizeBuffer which some packages (notably libgdiplus) still use
--- Makefile 2019-03-28 14:57:23.000000000 -0400
+++ Makefile 2019-03-31 23:38:20.700603561 -0400
@@ -67,8 +67,8 @@
$(UTILS):: libgif.a libutil.a
-libgif.so: $(OBJECTS) $(HEADERS)
- $(CC) $(CFLAGS) -shared $(LDFLAGS) -Wl,-soname -Wl,libgif.so.$(LIBMAJOR) -o libgif.so $(OBJECTS)
+libgif.so: $(OBJECTS) $(HEADERS) $(UOBJECTS)
+ $(CC) $(CFLAGS) -shared $(LDFLAGS) -Wl,-soname -Wl,libgif.so.$(LIBMAJOR) -o libgif.so $(OBJECTS) $(UOBJECTS)
libgif.a: $(OBJECTS) $(HEADERS)
$(AR) rcs libgif.a $(OBJECTS)

View file

@ -1,7 +1,7 @@
# Template file for 'giflib'
pkgname=giflib
version=5.1.9
revision=1
revision=2
build_style=gnu-makefile
hostmakedepends="xmlto"
short_desc="Library to handle, display and manipulate GIF images"