Gentoo Archives: gentoo-commits

From: "Tristan Heaven (nyhm)" <nyhm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libbulletml/files: libbulletml-0.0.6-gcc43.patch
Date: Wed, 30 Apr 2008 23:16:46
Message-Id: E1JrLXY-0004Ah-86@stork.gentoo.org
1 nyhm 08/04/30 23:16:44
2
3 Added: libbulletml-0.0.6-gcc43.patch
4 Log:
5 Fix building with gcc-4.3
6 (Portage version: 2.1.5_rc6)
7
8 Revision Changes Path
9 1.1 dev-libs/libbulletml/files/libbulletml-0.0.6-gcc43.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libbulletml/files/libbulletml-0.0.6-gcc43.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libbulletml/files/libbulletml-0.0.6-gcc43.patch?rev=1.1&content-type=text/plain
13
14 Index: libbulletml-0.0.6-gcc43.patch
15 ===================================================================
16 --- src/calc.yy
17 +++ src/calc.yy
18 @@ -8,6 +8,7 @@
19
20 #include <cmath>
21 #include <cctype>
22 +#include <cstring>
23
24 #include <vector>
25 #include <sstream>
26 --- src/tinyxml/tinyxml.h
27 +++ src/tinyxml/tinyxml.h
28 @@ -28,6 +28,8 @@
29 #include <string>
30 #include <stdio.h>
31 #include <assert.h>
32 +#include <cstring>
33 +#include <cstdlib>
34
35 class TiXmlDocument;
36 class TiXmlElement;
37 --- src/tinyxml/tinyxmlparser.cpp
38 +++ src/tinyxml/tinyxmlparser.cpp
39 @@ -24,6 +24,7 @@
40
41 #include "tinyxml.h"
42 #include <ctype.h>
43 +#include <cstring>
44
45 const char* TiXmlBase::SkipWhiteSpace( const char* p )
46 {
47
48
49
50 --
51 gentoo-commits@l.g.o mailing list