diff options
author | des <des@FreeBSD.org> | 2003-07-18 14:53:33 +0800 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-07-18 14:53:33 +0800 |
commit | 924c6fe2588b72e887c2355fab30002b7a22a22e (patch) | |
tree | 85c676512b4b48501bd7ef1e3a20a1e3e4ea335e /graphics/libungif | |
parent | 3619a5794e13f7c29a92c9c2643a2c19ac421ded (diff) | |
download | freebsd-ports-gnome-924c6fe2588b72e887c2355fab30002b7a22a22e.tar.gz freebsd-ports-gnome-924c6fe2588b72e887c2355fab30002b7a22a22e.tar.zst freebsd-ports-gnome-924c6fe2588b72e887c2355fab30002b7a22a22e.zip |
For some mysterious reason, libungif prefers the antiquated <varargs.h>
to <stdarg.h>. Unfortunately, it fails to build with gcc 3.3, so hack
configure to not test for the presence of <varargs.h>.
Diffstat (limited to 'graphics/libungif')
-rw-r--r-- | graphics/libungif/Makefile | 1 | ||||
-rw-r--r-- | graphics/libungif/files/patch-configure | 11 | ||||
-rw-r--r-- | graphics/libungif/files/patch-lib::qprintf.c | 15 |
3 files changed, 12 insertions, 15 deletions
diff --git a/graphics/libungif/Makefile b/graphics/libungif/Makefile index d85a8cf6400d..09185b5fffb2 100644 --- a/graphics/libungif/Makefile +++ b/graphics/libungif/Makefile @@ -7,6 +7,7 @@ PORTNAME= libungif PORTVERSION= 4.1.0b1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= ftp://prtr-13.ucsc.edu/pub/libungif/ \ ftp://ftp.ayamura.org/pub/graphics/ diff --git a/graphics/libungif/files/patch-configure b/graphics/libungif/files/patch-configure new file mode 100644 index 000000000000..12620c252929 --- /dev/null +++ b/graphics/libungif/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Fri Jul 18 08:47:31 2003 ++++ configure Fri Jul 18 08:48:20 2003 +@@ -3247,7 +3247,7 @@ + fi + done + +-for ac_hdr in varargs.h ++for ac_hdr in + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 diff --git a/graphics/libungif/files/patch-lib::qprintf.c b/graphics/libungif/files/patch-lib::qprintf.c deleted file mode 100644 index 27c394717f67..000000000000 --- a/graphics/libungif/files/patch-lib::qprintf.c +++ /dev/null @@ -1,15 +0,0 @@ - -$FreeBSD$ - ---- lib/qprintf.c.orig Fri Feb 1 19:15:32 2002 -+++ lib/qprintf.c Fri Feb 1 19:15:49 2002 -@@ -34,7 +34,8 @@ - * Same as fprintf to stderr but with optional print. * - *****************************************************************************/ - #ifdef HAVE_VARARGS_H --void GifQprintf(int va_alist) -+void GifQprintf(va_alist) -+va_dcl - { - char *Format, Line[128]; - va_list ArgPtr; |