diff options
author | mi <mi@FreeBSD.org> | 2001-08-21 09:30:32 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2001-08-21 09:30:32 +0800 |
commit | 849e03b8c7c46b60a9225960a9fef5335db45d94 (patch) | |
tree | 4129febbda6b57f596acf9b6deced3ae4ba4b3e8 /graphics/gd2/files | |
parent | 60dd1acb219a5ee3d6661802e0a55cd320463e30 (diff) | |
download | freebsd-ports-gnome-849e03b8c7c46b60a9225960a9fef5335db45d94.tar.gz freebsd-ports-gnome-849e03b8c7c46b60a9225960a9fef5335db45d94.tar.zst freebsd-ports-gnome-849e03b8c7c46b60a9225960a9fef5335db45d94.zip |
Restore the ability to _read_ gif images, removed by the author due
to fear of Unisys... Bump up PORTREVISION.
Approved by: maintainer timeout :( (since July 27)
Diffstat (limited to 'graphics/gd2/files')
-rw-r--r-- | graphics/gd2/files/patch-ac | 2 | ||||
-rw-r--r-- | graphics/gd2/files/patch-gif | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/graphics/gd2/files/patch-ac b/graphics/gd2/files/patch-ac index 415662373e4c..8ddd65b3acd2 100644 --- a/graphics/gd2/files/patch-ac +++ b/graphics/gd2/files/patch-ac @@ -156,7 +156,7 @@ gd_io_ss.o gd_png.o gd_jpeg.o gdxpm.o gdfontt.o gdfonts.o gdfontmb.o gdfontl.o \ gdfontg.o gdtables.o gdft.o gdttf.o gdcache.o gdkanji.o wbmp.o \ - gd_wbmp.o gdhelpers.o gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h \ -+ gd_wbmp.o gdhelpers.o ++ gd_wbmp.o gdhelpers.o gd_gif_in.o +INCS= gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h \ gdfontg.h gdhelpers.h + diff --git a/graphics/gd2/files/patch-gif b/graphics/gd2/files/patch-gif new file mode 100644 index 000000000000..e156fa2dd01f --- /dev/null +++ b/graphics/gd2/files/patch-gif @@ -0,0 +1,15 @@ +This patch together with the old implementation (from gd-1.5) of +gd_gif_in.c restore GD's ability to read GIF images. The writing of such +images is troubled because of Unisys' zeal in patent enforcement. + +--- gd.h Tue Feb 6 14:44:01 2001 ++++ gd.h Fri Jul 27 16:10:38 2001 +@@ -95,2 +95,4 @@ + gdImagePtr gdImageCreate(int sx, int sy); ++gdImagePtr gdImageCreateFromGif(FILE *fd); ++gdImagePtr gdImageCreateFromGifCtx(gdIOCtxPtr in); + gdImagePtr gdImageCreateFromPng(FILE *fd); +--- gd_gif_in.c Fri Jul 27 16:13:45 2001 ++++ gd_gif_in.c Fri Jul 27 16:14:46 2001 +@@ -6,1 +6,0 @@ +-#include "io.h" |