diff options
author | krion <krion@FreeBSD.org> | 2003-08-29 13:57:59 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-08-29 13:57:59 +0800 |
commit | 3987b1b625db2924d1a78b4b53019d785e98942f (patch) | |
tree | e77ac80fa5ab4116878357c8598ec0266b68f61e /www/ashe | |
parent | 4650ec9756e9aa082f1290162b37cc82da0a3648 (diff) | |
download | freebsd-ports-gnome-3987b1b625db2924d1a78b4b53019d785e98942f.tar.gz freebsd-ports-gnome-3987b1b625db2924d1a78b4b53019d785e98942f.tar.zst freebsd-ports-gnome-3987b1b625db2924d1a78b4b53019d785e98942f.zip |
- Fix build with gcc-3.3.x (varargs -> stdarg)
PR: 56109
Submitted by: Michael Edenfield <kutulu@kutulu.org>
Diffstat (limited to 'www/ashe')
-rw-r--r-- | www/ashe/Makefile | 2 | ||||
-rw-r--r-- | www/ashe/files/patch-ae | 42 |
2 files changed, 42 insertions, 2 deletions
diff --git a/www/ashe/Makefile b/www/ashe/Makefile index c8e2731cae7c..e150610db1fe 100644 --- a/www/ashe/Makefile +++ b/www/ashe/Makefile @@ -26,8 +26,6 @@ MAN1= xhtml.1 post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/src/XHTML.ad - @${REINPLACE_CMD} -e "s/malloc.h/stdlib.h/g" \ - ${WRKSRC}/libhtmlw-2.7b3/HTML-PSformat.c do-build: .for dir in libhtmlw-2.7b3 libcci src diff --git a/www/ashe/files/patch-ae b/www/ashe/files/patch-ae new file mode 100644 index 000000000000..73ad3ca9b5de --- /dev/null +++ b/www/ashe/files/patch-ae @@ -0,0 +1,42 @@ +--- libhtmlw-2.7b3/HTML-PSformat.c.orig Mon May 20 16:35:47 1996 ++++ libhtmlw-2.7b3/HTML-PSformat.c Thu Aug 28 20:25:49 2003 +@@ -59,16 +59,16 @@ + * + */ + +-#include <varargs.h> ++#include <stdarg.h> + + #include <string.h> + #include <stdio.h> + #include <ctype.h> + #include <math.h> + #ifdef __bsdi__ +-#include <sys/malloc.h> ++#include <sys/stdlib.h> + #else +-#include <malloc.h> ++#include <stdlib.h> + #endif + #include <time.h> + #include <sys/types.h> +@@ -264,9 +264,7 @@ + } + #else /* not BROKEN_SOLARIS_COMPILER_STDARG */ + static int +-PSprintf(format, va_alist) +- char* format; +- va_dcl ++PSprintf(char *format, ...) + { + int len; + char *s; +@@ -286,7 +284,7 @@ + } + PS_string = s; + } +- va_start(args); ++ va_start(args, format); + len = vsprintf(PS_string+PS_len, format, args); + /* this is a hack to make it work on systems were vsprintf(s,...) + * returns s, instead of the len. |