diff options
author | JoseVBeneyto <sepen@users.sourceforge.net> | 2008-12-16 16:05:21 +0000 |
---|---|---|
committer | JoseVBeneyto <sepen@users.sourceforge.net> | 2008-12-16 16:05:21 +0000 |
commit | a2bba84f9d5861e714dbb2a711102467e61d167a (patch) | |
tree | c9242995106db2ef3606cb74dd2eeccc3438d0c6 /xalan-c | |
parent | 3472c2de5d088d77f59845e98870532cada861d2 (diff) | |
download | contrib-a2bba84f9d5861e714dbb2a711102467e61d167a.tar.gz contrib-a2bba84f9d5861e714dbb2a711102467e61d167a.tar.xz |
xalan-c: fixed compilation error (thanks to Mauricio Faria de Oliveira)
Diffstat (limited to 'xalan-c')
-rw-r--r-- | xalan-c/.md5sum | 1 | ||||
-rw-r--r-- | xalan-c/Pkgfile | 6 | ||||
-rw-r--r-- | xalan-c/xalandomstring.hpp.patch | 11 |
3 files changed, 16 insertions, 2 deletions
diff --git a/xalan-c/.md5sum b/xalan-c/.md5sum index 86b587ce3..5e2e85120 100644 --- a/xalan-c/.md5sum +++ b/xalan-c/.md5sum @@ -1 +1,2 @@ 0a3fbb535885531cc544b07a2060bfb1 Xalan-C_1_10_0-src.tar.gz +24e186cdf27ee4f32195e84341e60345 xalandomstring.hpp.patch diff --git a/xalan-c/Pkgfile b/xalan-c/Pkgfile index 790cfc59b..347a3f14d 100644 --- a/xalan-c/Pkgfile +++ b/xalan-c/Pkgfile @@ -6,10 +6,12 @@ name=xalan-c version=1.10.0 -release=1 -source=(http://www.apache.org/dist/xml/${name}/Xalan-C_1_10_0-src.tar.gz) +release=2 +source=(http://www.apache.org/dist/xml/${name}/Xalan-C_1_10_0-src.tar.gz \ + xalandomstring.hpp.patch) build() { + patch -p0 -i $SRC/xalandomstring.hpp.patch export XALANCROOT=$SRC/xml-xalan/c cd ${XALANCROOT} autoconf diff --git a/xalan-c/xalandomstring.hpp.patch b/xalan-c/xalandomstring.hpp.patch new file mode 100644 index 000000000..a33cba506 --- /dev/null +++ b/xalan-c/xalandomstring.hpp.patch @@ -0,0 +1,11 @@ +--- xml-xalan/c/src/xalanc/XalanDOM/XalanDOMString.hpp 2005-08-08 12:25:52.000000000 -0300 ++++ xml-xalan/c/src/xalanc/XalanDOM/XalanDOMString.hpp.new 2008-12-15 12:38:40.369221435 -0200 +@@ -16,7 +16,7 @@ + #if !defined(XALANDOMSTRING_HEADER_GUARD_1357924680) + #define XALANDOMSTRING_HEADER_GUARD_1357924680 + +- ++#include <string.h> + + #include <xalanc/XalanDOM/XalanDOMDefinitions.hpp> + |