summaryrefslogtreecommitdiff
path: root/textproc/xalan-c/patches
diff options
context:
space:
mode:
authorxtraeme <xtraeme@pkgsrc.org>2008-01-24 07:17:33 +0000
committerxtraeme <xtraeme@pkgsrc.org>2008-01-24 07:17:33 +0000
commited30dd51e02c31496504e5175fdc9fe0f56042ae (patch)
treee2b6719fb4c70cab942a5d6d4e7cb957845c5d9c /textproc/xalan-c/patches
parent1a1352aa85058e4fffebb4b2ff20f6b46cef622a (diff)
downloadpkgsrc-ed30dd51e02c31496504e5175fdc9fe0f56042ae.tar.gz
Update to 1.10.
Major updates since version 1.9 include: * Support for XML 1.1 and Namespaces in XML 1.1. * Added support for IBM XLC 7.0 compiler on Linux. * Improved and stabilized C pluggable memory management functionality. * Various improvements in Xalan XML serializers for better performance and stability. * Upgrade from Xerces-C 2.6 to Xerces-C 2.7. Major updates since version 1.8 include: * Pluggable Memory Management. This feature allows applications to maintain precise control over memory allocations. This will allow users, with knowledge of their application's characteristics, to provide a more efficient allocation method than the general purpose procedures provided by the system. for more information on how to use this feature, please see the Pluggable Memory Management section of the Programming page. * Improved stability on the execution of large stylesheets and XML documents. Because the current implementation relies on function recursion, certain stylesheets/input documents may cause the program stack to overflow and cause the application to fail. It also may inhibit executing stylesheets that are heavily dependent on recursive functions. This feature will prevent these types of failure. * Provided a global option to pool all text node strings. This feature allows developers to set a flag to determine if a parsed source tree will pool the values of all of the text nodes in the XML document. By doing so, this can result in a significant reduction in memory usage, particularly if there are a lot of repeated values in text nodes. Please see the class descriptions for XalanSourceTreeDocument, XalanDefaultParsedSource, and XalanTransformer in the API Reference section for more information. ... and more, see: http://xml.apache.org/xalan-c/whatsnew.html
Diffstat (limited to 'textproc/xalan-c/patches')
-rw-r--r--textproc/xalan-c/patches/patch-aa37
-rw-r--r--textproc/xalan-c/patches/patch-ac22
-rw-r--r--textproc/xalan-c/patches/patch-ad13
3 files changed, 0 insertions, 72 deletions
diff --git a/textproc/xalan-c/patches/patch-aa b/textproc/xalan-c/patches/patch-aa
deleted file mode 100644
index c906c56314d..00000000000
--- a/textproc/xalan-c/patches/patch-aa
+++ /dev/null
@@ -1,37 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2006/01/05 20:43:20 joerg Exp $
-
---- Makefile.in.orig 2005-12-31 00:57:23.000000000 +0000
-+++ Makefile.in
-@@ -257,6 +257,32 @@ ifeq ($(PLATFORM), FREEBSD)
- LINK = $(CXX) -D${PLATFORM} ${PIC_OPTION}
-
- endif
-+#=============== DRAGONFLY SPECIFIC OPTIONS ======================
-+
-+ifeq ($(PLATFORM), DRAGONFLY)
-+
-+ SUPPORTED = TRUE
-+ ALLLIBS = ${LIBS} -L/usr/local/lib
-+ SHLIBSUFFIX=.so
-+ PIC_OPTION = -fPIC
-+
-+ PLATFORM_COMPILE_OPTIONS = -D${PLATFORM} ${PIC_OPTION} ${WCSTOMBS}
-+
-+ # We need the ICU library if we are using the ICUBridge
-+ ifdef XALAN_USE_ICU
-+ LD_RPATH_PRE = -Wl,-rpath,
-+ PLATFORM_LIB_LINK_OPTIONS = $(LD_RPATH_PRE)${ICUROOT}/lib
-+ PLATFORM_LIB_LINK_OPTIONS += -licuuc -licudata -lgcc
-+ ALLLIBS += -L${ICUROOT}
-+ endif
-+
-+ EXTRA_LINK_OPTIONS = ${LDFLAGS}
-+ CC1 = $(CXX) $(CXXFLAGS) $(PLATFORM_COMPILE_OPTIONS)
-+ CC4 = $(CC) $(CXXFLAGS) $(PLATFORM_COMPILE_OPTIONS)
-+ MAKE_SHARED = $(CXX) $(CXXFLAGS) -D${PLATFORM} -shared ${PIC_OPTION}
-+ LINK = $(CXX) -D${PLATFORM} ${PIC_OPTION}
-+
-+endif
-
- #=============== NETBSD SPECIFIC OPTIONS ======================
-
diff --git a/textproc/xalan-c/patches/patch-ac b/textproc/xalan-c/patches/patch-ac
deleted file mode 100644
index 141a78ac651..00000000000
--- a/textproc/xalan-c/patches/patch-ac
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2006/01/05 20:43:20 joerg Exp $
-
---- runConfigure.orig 2005-12-31 00:58:34.000000000 +0000
-+++ runConfigure
-@@ -261,7 +261,7 @@ echo "Extra configure options: $configur
- #
-
- case $platform in
-- aix | linux | freebsd | netbsd | solaris | hp-10 | hp-11 | irix | tru64 | macosx)
-+ aix | linux | freebsd | netbsd | solaris | hp-10 | hp-11 | irix | tru64 | macosx | dragonfly)
- # platform has been recognized
- ;;
- *)
-@@ -398,6 +398,8 @@ elif test $platform = "aix"; then
- threadingLibs="-lpthreads"
- elif test $platform = "freebsd"; then
- threadingLibs="-pthread -lc_r"
-+elif test $platform = "dragonfly"; then
-+ threadingLibs="-pthread -lc_r"
- elif test $platform = "netbsd"; then
- threadingLibs="-pthread -lpthread"
- elif test $platform = "hp-10"; then
diff --git a/textproc/xalan-c/patches/patch-ad b/textproc/xalan-c/patches/patch-ad
deleted file mode 100644
index 2cb3f5ae31e..00000000000
--- a/textproc/xalan-c/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.3 2006/01/05 20:43:20 joerg Exp $
-
---- PlatformSupport/XalanArrayAllocator.hpp.orig 2005-12-31 01:07:05.000000000 +0000
-+++ PlatformSupport/XalanArrayAllocator.hpp
-@@ -211,7 +211,7 @@ private:
- ListEntryType& theNewEntry = m_list.back();
-
- // Resize the vector to the appropriate size...
-- theNewEntry.second.resize(theBlockSize, VectorType::value_type(0));
-+ theNewEntry.second.resize(theBlockSize);
-
- // Set the number of free spaces accordingly...
- theNewEntry.first = theBlockSize - theCount;