summaryrefslogtreecommitdiff
path: root/www-misc/wsmake/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
commit4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch)
treeba5f07bf3f9d22d82e54a462313f5d244036c768 /www-misc/wsmake/files
reinit the tree, so we can have metadata
Diffstat (limited to 'www-misc/wsmake/files')
-rw-r--r--www-misc/wsmake/files/wsmake-0.6.4-bv.diff13
-rw-r--r--www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch33
2 files changed, 46 insertions, 0 deletions
diff --git a/www-misc/wsmake/files/wsmake-0.6.4-bv.diff b/www-misc/wsmake/files/wsmake-0.6.4-bv.diff
new file mode 100644
index 000000000000..d10aa5769c2d
--- /dev/null
+++ b/www-misc/wsmake/files/wsmake-0.6.4-bv.diff
@@ -0,0 +1,13 @@
+--- libwsmake/wsUtil.cpp.orig Sat Sep 1 22:09:13 2001
++++ libwsmake/wsUtil.cpp Tue Sep 3 20:19:04 2002
+@@ -714,7 +714,8 @@
+ if(__wsmake_quiet) return;
+
+ vfprintf(out,output,*ap);
+- va_end((void*&)*ap);
++ //BV: this does not compile: va_end((void*&)*ap);
++ va_end((char*&)*ap);
+ }
+
+ #ifdef DEBUG
+
diff --git a/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch b/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch
new file mode 100644
index 000000000000..0ecfe62003f5
--- /dev/null
+++ b/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch
@@ -0,0 +1,33 @@
+https://bugs.gentoo.org/show_bug.cgi?id=251745
+https://sourceforge.net/tracker/index.php?func=detail&aid=2520894&group_id=5982&atid=105982
+
+--- libwsmake/wsSubTag.cpp
++++ libwsmake/wsSubTag.cpp.new
+@@ -22,6 +22,7 @@
+ ***********************************************************************/
+ #include <cstdio>
+ #include <cstring>
++#include <cstdlib>
+
+ #include <unistd.h>
+ #ifdef HAVE_SYS_WAIT_H
+--- libwsmake/wsWebPage.cpp
++++ libwsmake/wsWebPage.cpp.new
+@@ -23,6 +23,7 @@
+ #include <cassert>
+ #include <cerrno>
+ #include <ctime>
++#include <cstdlib>
+
+ #include "wsmake.h"
+
+--- libwsmake/wsUtil.cpp
++++ libwsmake/wsUtil.cpp.new
+@@ -28,6 +28,7 @@
+ #include <cassert>
+ #include <cerrno>
+ #include <cstring>
++#include <cstdlib>
+
+ #ifdef HAVE_UTIME_H
+ #include <utime.h>