Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/lufs/files: lufs-0.9.7-gcc43.patch
Date: Sun, 29 Jun 2008 12:21:02
Message-Id: E1KCvto-0007cF-NS@stork.gentoo.org
1 loki_val 08/06/29 12:20:56
2
3 Added: lufs-0.9.7-gcc43.patch
4 Log:
5 Fix for gcc-4.3 bug #225413, thanks to Marek Miller <mlm@××××××.pl>.
6 (Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)
7
8 Revision Changes Path
9 1.1 sys-fs/lufs/files/lufs-0.9.7-gcc43.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/lufs/files/lufs-0.9.7-gcc43.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/lufs/files/lufs-0.9.7-gcc43.patch?rev=1.1&content-type=text/plain
13
14 Index: lufs-0.9.7-gcc43.patch
15 ===================================================================
16 --- filesystems/ftpfs/ftplib.cpp.orig 2008-06-08 20:01:35.000000000 +0200
17 +++ filesystems/ftpfs/ftplib.cpp 2008-06-08 20:01:53.000000000 +0200
18 @@ -20,6 +20,7 @@
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22 +#include <cstring>
23 #include <unistd.h>
24 #include <netdb.h>
25 #include <stdio.h>
26 --- filesystems/ftpfs/ftpfs.h.orig 2008-06-08 20:04:33.000000000 +0200
27 +++ filesystems/ftpfs/ftpfs.h 2008-06-08 20:05:07.000000000 +0200
28 @@ -23,6 +23,8 @@
29 #ifndef _FTPFS_H_
30 #define _FTPFS_H_
31
32 +#include <cstdlib>
33 +#include <cstring>
34 using namespace std;
35
36 struct directory;
37 --- filesystems/sshfs/sftplib.h.orig 2008-06-08 20:08:55.000000000 +0200
38 +++ filesystems/sshfs/sftplib.h 2008-06-08 20:09:43.000000000 +0200
39 @@ -28,6 +28,9 @@
40
41 #include <string>
42
43 +#include <cstring>
44 +#include <cstdlib>
45 +
46 using namespace std;
47
48 #define MAXDATA 32768
49
50
51
52 --
53 gentoo-commits@l.g.o mailing list