Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-misc/wsmake/files: wsmake-0.6.4-gcc43.patch
Date: Fri, 30 Jan 2009 03:06:51
Message-Id: E1LSiCT-0006ZW-5j@stork.gentoo.org
1 dirtyepic 09/01/30 01:29:41
2
3 Added: wsmake-0.6.4-gcc43.patch
4 Log:
5 Fix building with GCC-4.3, bug #251745. Patch contributed by mipas.
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch?rev=1.1&content-type=text/plain
13
14 Index: wsmake-0.6.4-gcc43.patch
15 ===================================================================
16 https://bugs.gentoo.org/show_bug.cgi?id=251745
17 https://sourceforge.net/tracker/index.php?func=detail&aid=2520894&group_id=5982&atid=105982
18
19 --- libwsmake/wsSubTag.cpp
20 +++ libwsmake/wsSubTag.cpp.new
21 @@ -22,6 +22,7 @@
22 ***********************************************************************/
23 #include <cstdio>
24 #include <cstring>
25 +#include <cstdlib>
26
27 #include <unistd.h>
28 #ifdef HAVE_SYS_WAIT_H
29 --- libwsmake/wsWebPage.cpp
30 +++ libwsmake/wsWebPage.cpp.new
31 @@ -23,6 +23,7 @@
32 #include <cassert>
33 #include <cerrno>
34 #include <ctime>
35 +#include <cstdlib>
36
37 #include "wsmake.h"
38
39 --- libwsmake/wsUtil.cpp
40 +++ libwsmake/wsUtil.cpp.new
41 @@ -28,6 +28,7 @@
42 #include <cassert>
43 #include <cerrno>
44 #include <cstring>
45 +#include <cstdlib>
46
47 #ifdef HAVE_UTIME_H
48 #include <utime.h>