libraries/xalan-c: Updated for version 1.10.0

This commit is contained in:
Heinz Wiesinger 2010-05-13 00:33:50 +02:00 committed by David Somero
parent d44c94ed78
commit 42be3556c6
3 changed files with 69 additions and 4 deletions

View File

@ -0,0 +1,50 @@
--- XalanDOMString.cpp 2008-03-21 09:50:39.000000000 +0100
+++ xml-xalan/c/src/xalanc/XalanDOM/XalanDOMString.cpp 2008-03-21 09:51:06.000000000 +0100
@@ -26,6 +26,7 @@
#include <cstdlib>
+#include <cstring>
--- FormatterToHTML.cpp 2008-03-21 09:56:31.000000000 +0100
+++ xml-xalan/c/src/xalanc/XMLSupport/FormatterToHTML.cpp 2008-03-21 09:56:54.000000000 +0100
@@ -26,6 +26,7 @@
#include <cassert>
+#include <cstring>
--- ElemNumber.cpp 2008-03-21 10:09:56.000000000 +0100
+++ xml-xalan/c/src/xalanc/XSLT/ElemNumber.cpp 2008-03-21 10:10:15.000000000 +0100
@@ -14,6 +14,7 @@
* limitations under the License.
*/
#include "ElemNumber.hpp"
+#include <cstring>
--- DirectoryEnumerator.hpp 2008-03-21 10:19:13.000000000 +0100
+++ xml-xalan/c/src/xalanc/PlatformSupport/DirectoryEnumerator.hpp 2008-03-21 10:19:41.000000000 +0100
@@ -36,6 +36,7 @@
#include <functional>
#include <iterator>
+#include <cstring>
#include "xercesc/framework/MemoryManager.hpp"
--- XalanExe.cpp 2008-03-21 12:11:08.000000000 +0100
+++ xml-xalan/c/src/xalanc/XalanExe/XalanExe.cpp 2008-03-21 12:11:44.000000000 +0100
@@ -19,6 +19,7 @@
#include <cstdlib>
+#include <cstring>
#if defined(XALAN_CLASSIC_IOSTREAMS)
#include <iostream.h>
#else

View File

@ -2,7 +2,7 @@
# Slackware build script for xalan-c
# Copyright 2008 Heinz Wiesinger <hmwiesinger@gmx.at>
# Copyright 2008-2009 Heinz Wiesinger <pprkut@liwjatan.at>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -25,7 +25,7 @@
PRGNAM=Xalan-C
VERSION=1_10_0
ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
CWD=$(pwd)
@ -38,10 +38,13 @@ PKGVER=$(echo $VERSION | tr _ .)
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi
FLAGS=""
@ -60,10 +63,20 @@ cd xml-xalan
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
patch -p1 -i $CWD/xalan-c-1.10.0+gcc-4.3.patch
cd c
XALANCROOT="$TMP/xml-xalan/c" \
XERCESCROOT="/usr" \
./runConfigure -p linux -c gcc -x g++ -m inmem -r pthreads -P /usr "$FLAGS"
./runConfigure \
-p linux \
-c gcc \
-x g++ \
-m inmem \
-r pthreads \
-P /usr \
-C --libdir=/usr/lib$LIBDIRSUFFIX \
"$FLAGS"
# I could not get this to compile with more than 1 job, XGizzmo
XALANCROOT="$TMP/xml-xalan/c" \
@ -85,4 +98,4 @@ mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PKGNAM-$PKGVER-$ARCH-$BUILD$TAG.tgz
/sbin/makepkg -l y -c n $OUTPUT/$PKGNAM-$PKGVER-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View File

@ -2,7 +2,9 @@ PRGNAM="xalan-c"
VERSION="1.10.0"
HOMEPAGE="http://xalan.apache.org"
DOWNLOAD="http://www.apache.org/dist/xml/xalan-c/Xalan-C_1_10_0-src.tar.gz"
DOWNLOAD_x86_64=""
MD5SUM="0a3fbb535885531cc544b07a2060bfb1"
MD5SUM_x86_64=""
MAINTAINER="ppr:kut"
EMAIL="HMWiesinger@gmx.at"
APPROVED="David Somero"