diff options
author | barner <barner@FreeBSD.org> | 2005-09-15 21:02:02 +0800 |
---|---|---|
committer | barner <barner@FreeBSD.org> | 2005-09-15 21:02:02 +0800 |
commit | 15dfbd3063cc91a784a4a8c116264e16ab37e02c (patch) | |
tree | f2facfcaf31443fffb11b5a484c5a17470c5fe8e /www/wsmake/files | |
parent | 87d45f6778d18a47f8aeb8bd9f7c0d898003a8bc (diff) | |
download | freebsd-ports-gnome-15dfbd3063cc91a784a4a8c116264e16ab37e02c.tar.gz freebsd-ports-gnome-15dfbd3063cc91a784a4a8c116264e16ab37e02c.tar.zst freebsd-ports-gnome-15dfbd3063cc91a784a4a8c116264e16ab37e02c.zip |
- Unbreak on !i386
Tested by: submitter (amd64), barner (sparc64, ia64)
Submitted by: Johan van Selst <johans@stack.nl>
PR: ports/86150
Diffstat (limited to 'www/wsmake/files')
-rw-r--r-- | www/wsmake/files/patch-libwsmake_wsUtil.cpp | 17 | ||||
-rw-r--r-- | www/wsmake/files/patch-libwsmake_wsUtil.h | 11 |
2 files changed, 28 insertions, 0 deletions
diff --git a/www/wsmake/files/patch-libwsmake_wsUtil.cpp b/www/wsmake/files/patch-libwsmake_wsUtil.cpp new file mode 100644 index 000000000000..77ad62ed2db5 --- /dev/null +++ b/www/wsmake/files/patch-libwsmake_wsUtil.cpp @@ -0,0 +1,17 @@ +--- libwsmake/wsUtil.cpp.orig Sat Sep 1 20:09:13 2001 ++++ libwsmake/wsUtil.cpp Thu Sep 15 12:38:48 2005 +@@ -709,12 +709,12 @@ + } + } + +-void std::__wsmake_print_it(FILE *out, const char *output, const va_list *ap) ++void std::__wsmake_print_it(FILE *out, const char *output, va_list *ap) + { + if(__wsmake_quiet) return; + + vfprintf(out,output,*ap); +- va_end((void*&)*ap); ++ va_end(*ap); + } + + #ifdef DEBUG diff --git a/www/wsmake/files/patch-libwsmake_wsUtil.h b/www/wsmake/files/patch-libwsmake_wsUtil.h new file mode 100644 index 000000000000..886da452339c --- /dev/null +++ b/www/wsmake/files/patch-libwsmake_wsUtil.h @@ -0,0 +1,11 @@ +--- libwsmake/wsUtil.h.orig Thu Sep 15 09:39:51 2005 ++++ libwsmake/wsUtil.h Thu Sep 15 09:38:34 2005 +@@ -77,7 +77,7 @@ namespace std + void __wsmake_print_error(const char *, ...); + void __wsmake_print(const char *, ...); + void __wsmake_print(int, const char *, ...); +- void __wsmake_print_it(FILE *, const char *, const va_list *); ++ void __wsmake_print_it(FILE *, const char *, va_list *); + } + + #endif /* __WSUTIL_H__ */ |