diff options
author | Simon Barner <barner@FreeBSD.org> | 2005-09-15 13:02:02 +0000 |
---|---|---|
committer | Simon Barner <barner@FreeBSD.org> | 2005-09-15 13:02:02 +0000 |
commit | 9914ec42f7586b0cd0b5bf83e5fc16b2df37f5cd (patch) | |
tree | b3ca1059f4fbaf4d126c0c1124ff4c62e5e3ff38 /www/wsmake/files | |
parent | 90e8af9d9ce502808f644438aa74986ebdaade96 (diff) | |
download | ports-9914ec42f7586b0cd0b5bf83e5fc16b2df37f5cd.tar.gz ports-9914ec42f7586b0cd0b5bf83e5fc16b2df37f5cd.zip |
Notes
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__ */ |