Magellan Linux

Annotation of /trunk/xalan-c/patches/xalan-c-1.10.0-gcc43.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 856 - (hide annotations) (download)
Fri Jun 19 00:26:58 2009 UTC (14 years, 11 months ago) by niro
File size: 1359 byte(s)
fix compilation with gcc43

1 niro 856 --- XalanDOMString.cpp 2008-03-21 09:50:39.000000000 +0100
2     +++ xalan-c-1.10.0/work/xml-xalan/c/src/xalanc/XalanDOM/XalanDOMString.cpp 2008-03-21 09:51:06.000000000 +0100
3     @@ -26,6 +26,7 @@
4    
5    
6     #include <cstdlib>
7     +#include <cstring>
8    
9    
10    
11     --- FormatterToHTML.cpp 2008-03-21 09:56:31.000000000 +0100
12     +++ xalan-c-1.10.0/work/xml-xalan/c/src/xalanc/XMLSupport/FormatterToHTML.cpp 2008-03-21 09:56:54.000000000 +0100
13     @@ -26,6 +26,7 @@
14    
15    
16     #include <cassert>
17     +#include <cstring>
18    
19    
20    
21     --- ElemNumber.cpp 2008-03-21 10:09:56.000000000 +0100
22     +++ xalan-c-1.10.0/work/xml-xalan/c/src/xalanc/XSLT/ElemNumber.cpp 2008-03-21 10:10:15.000000000 +0100
23     @@ -14,6 +14,7 @@
24     * limitations under the License.
25     */
26     #include "ElemNumber.hpp"
27     +#include <cstring>
28    
29    
30    
31     --- DirectoryEnumerator.hpp 2008-03-21 10:19:13.000000000 +0100
32     +++ xalan-c-1.10.0/work/xml-xalan/c/src/xalanc/PlatformSupport/DirectoryEnumerator.hpp 2008-03-21 10:19:41.000000000 +0100
33     @@ -36,6 +36,7 @@
34    
35     #include <functional>
36     #include <iterator>
37     +#include <cstring>
38    
39    
40     #include "xercesc/framework/MemoryManager.hpp"
41     --- XalanExe.cpp 2008-03-21 12:11:08.000000000 +0100
42     +++ xalan-c-1.10.0/work/xml-xalan/c/src/xalanc/XalanExe/XalanExe.cpp 2008-03-21 12:11:44.000000000 +0100
43     @@ -19,6 +19,7 @@
44    
45    
46     #include <cstdlib>
47     +#include <cstring>
48     #if defined(XALAN_CLASSIC_IOSTREAMS)
49     #include <iostream.h>
50     #else