Date: Fri, 29 Oct 2004 00:02:33 GMT From: Douglas Thrift <douglas@douglasthrift.net> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/73259: Update port: textproc/xalan-c update to 1.8.0 Message-ID: <200410290002.i9T02XQb055987@www.freebsd.org> Resent-Message-ID: <200410290010.i9T0APtJ036553@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 73259 >Category: ports >Synopsis: Update port: textproc/xalan-c update to 1.8.0 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 29 00:10:25 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Douglas Thrift >Release: 4.10-STABLE >Organization: >Environment: FreeBSD daemon.douglasthrift.net 4.10-STABLE FreeBSD 4.10-STABLE #0: Fri Aug 27 21:50:23 PDT 2004 douglas@daemon.douglasthrift.net:/usr/obj/usr/src/sys/DAEMONIC i386 >Description: Updated Xalan C++ to 1.8.0 and fixed to work with Xerces C++ 2.6.0. >How-To-Repeat: >Fix: diff -ruN /usr/ports/textproc/xalan-c/Makefile xalan-c/Makefile --- /usr/ports/textproc/xalan-c/Makefile Wed Sep 29 10:30:02 2004 +++ xalan-c/Makefile Thu Oct 28 15:08:00 2004 @@ -7,7 +7,7 @@ # ------------------------------------------------------------------------------ PORTNAME= xalan-c -PORTVERSION= 1.7.0 +PORTVERSION= 1.8.0 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_APACHE_XML:S/$/:msax,docs/} MASTER_SITE_SUBDIR= ${PORTNAME}/source/:msax ${PORTNAME}/docs/:docs @@ -30,7 +30,7 @@ # we need the _extracted_ xerces-c2 port sources to build this one # (installed version of port is enough) -XERCESC_LIB_VER?= 25 +XERCESC_LIB_VER?= 26 LIB_DEPENDS+= xerces-c.${XERCESC_LIB_VER}:${PORTSDIR}/textproc/xerces-c2 XERCESCROOT?= ${LOCALBASE} @@ -168,9 +168,7 @@ ${MKDIR} ${DOCSDIR} cd ${DOCSDIR} && \ ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \ - ${_DISTDIR}/${DOCS_TARBALL} ${EXTRACT_AFTER_ARGS} && \ - ${MV} ${DOCSDIR}/Xalan-C_${PORTVERSION:S/./_/g}-docs/* ${DOCSDIR} && \ - ${RMDIR} ${DOCSDIR}/Xalan-C_${PORTVERSION:S/./_/g}-docs + ${_DISTDIR}/${DOCS_TARBALL} ${EXTRACT_AFTER_ARGS} .endif post-clean: diff -ruN /usr/ports/textproc/xalan-c/distinfo xalan-c/distinfo --- /usr/ports/textproc/xalan-c/distinfo Sun Apr 18 17:24:51 2004 +++ xalan-c/distinfo Mon Oct 25 17:36:18 2004 @@ -1,4 +1,4 @@ -MD5 (Xalan-C_1_7_0-src.tar.gz) = 911a952fb1cccc0d97b54ff32b9a52f7 -SIZE (Xalan-C_1_7_0-src.tar.gz) = 1357604 -MD5 (Xalan-C_1_7_0-docs.tar.gz) = 73021aa1e8f0a7d03839861fc1399bec -SIZE (Xalan-C_1_7_0-docs.tar.gz) = 12128515 +MD5 (Xalan-C_1_8_0-src.tar.gz) = fca5101f56608311f8121591f022bc2c +SIZE (Xalan-C_1_8_0-src.tar.gz) = 1351965 +MD5 (Xalan-C_1_8_0-docs.tar.gz) = 3bbd4eff456e7051879558d04db9fa4d +SIZE (Xalan-C_1_8_0-docs.tar.gz) = 8743423 diff -ruN /usr/ports/textproc/xalan-c/files/patch-aa xalan-c/files/patch-aa --- /usr/ports/textproc/xalan-c/files/patch-aa Wed Mar 3 14:26:42 2004 +++ xalan-c/files/patch-aa Wed Dec 31 16:00:00 1969 @@ -1,46 +0,0 @@ -! fix FreeBSD specific threading and linking things ---- samples/runConfigure.orig Sun Feb 29 11:16:27 2004 -+++ samples/runConfigure Sun Feb 29 11:17:16 2004 -@@ -333,7 +333,13 @@ - elif test $platform = "aix"; then - threadingLibs="-lpthreads" - elif test $platform = "freebsd"; then -- threadingLibs="-pthread -lc_r" -+ if test -n "${PTHREAD_LIBS}" ; then -+ threadingLibs="${PTHREAD_LIBS}" -+ threadingDefines="${PTHREAD_CFLAGS}" -+ else -+ threadingLibs="-lpthread" -+ threadingDefines="" -+ fi - elif test $platform = "netbsd"; then - threadingLibs="-pthread -lpthread" - elif test $platform = "hp-10"; then ---- Makefile.incl.in.orig Sun Feb 29 11:13:13 2004 -+++ Makefile.incl.in Sun Feb 29 11:13:41 2004 -@@ -200,7 +200,7 @@ - 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 -+ PLATFORM_LIB_LINK_OPTIONS += -licuuc -licudata - ALLLIBS += -L${ICUROOT} - endif - ---- runConfigure.orig Sun Feb 29 11:13:46 2004 -+++ runConfigure Sun Feb 29 11:16:14 2004 -@@ -470,7 +470,13 @@ - elif test $platform = "aix"; then - threadingLibs="-lpthreads" - elif test $platform = "freebsd"; then -- threadingLibs="-pthread -lc_r" -+ if test -n "${PTHREAD_LIBS}" ; then -+ threadingLibs="${PTHREAD_LIBS}" -+ threadingDefines="${PTHREAD_CFLAGS}" -+ else -+ threadingLibs="-lpthread" -+ threadingDefines="" -+ fi - elif test $platform = "netbsd"; then - threadingLibs="-pthread -lpthread" - elif test $platform = "hp-10"; then diff -ruN /usr/ports/textproc/xalan-c/files/patch-ab xalan-c/files/patch-ab --- /usr/ports/textproc/xalan-c/files/patch-ab Wed Mar 3 14:26:42 2004 +++ xalan-c/files/patch-ab Wed Dec 31 16:00:00 1969 @@ -1,12 +0,0 @@ -! taken from xalan-c CVS ---- samples/ThreadSafe/ThreadSafe.cpp.orig Sun Feb 29 21:07:39 2004 -+++ samples/ThreadSafe/ThreadSafe.cpp Sun Feb 29 21:07:55 2004 -@@ -95,7 +95,7 @@ - #elif defined(XALAN_POSIX2_AVAILABLE) - #include <pthread.h> - #include <unistd.h> -- typedef unsigned long theThreadIDType; -+ typedef pthread_t theThreadIDType; - typedef pthread_t theThreadType; - - #else diff -ruN /usr/ports/textproc/xalan-c/files/patch-ac xalan-c/files/patch-ac --- /usr/ports/textproc/xalan-c/files/patch-ac Wed Mar 3 14:26:42 2004 +++ xalan-c/files/patch-ac Wed Dec 31 16:00:00 1969 @@ -1,16 +0,0 @@ -! taken from xalan-c CVS ---- ./src/xalanc/Utils/Makefile.in.orig Sun Feb 29 21:26:41 2004 -+++ ./src/xalanc/Utils/Makefile.in Sun Feb 29 21:28:01 2004 -@@ -95,10 +95,10 @@ ifeq ($(MESSAGELOADER),INMEM) - - locale: $(MESSAGELIB) - --$(MESSAGELIB): $(XALANMSGLIB_SRC)/LocalMsgData.hpp -+$(MESSAGELIB): $(XALANMSGLIB_SRC)/include/LocalMsgData.hpp - $(MAKE) -C XalanMsgLib - --$(XALANMSGLIB_SRC)/LocalMsgData.hpp : $(XSL_BIN_DIR)/MsgCreator $(XLIFF_FILE_NAME) -+$(XALANMSGLIB_SRC)/include/LocalMsgData.hpp : $(XSL_BIN_DIR)/MsgCreator $(XLIFF_FILE_NAME) - $(XSL_BIN_DIR)/MsgCreator $(XLIFF_FILE_NAME) -TYPE $(MESSAGELOADER) -LOCALE $(LOCALE) - @$(MOVE) LocalMsgIndex.hpp $(XSL_NLS_DIR)/include - @$(MOVE) LocalMsgData.hpp $(XSL_NLS_DIR)/include diff -ruN /usr/ports/textproc/xalan-c/files/patch-ad xalan-c/files/patch-ad --- /usr/ports/textproc/xalan-c/files/patch-ad Wed Mar 3 14:26:42 2004 +++ xalan-c/files/patch-ad Wed Dec 31 16:00:00 1969 @@ -1,25 +0,0 @@ -! fix INSTALL_{PROGRAM->DATA} ---- src/xalanc/Utils/Makefile.in.orig Sun Feb 29 21:26:41 2004 -+++ src/xalanc/Utils/Makefile.in Sun Feb 29 21:28:01 2004 -@@ -202,7 +202,7 @@ - -${MKDIR} -p $(XSL_NLS_DIR)/include - - doCommonInstall: -- $(INSTALL_PROGRAM) $(XSL_NLS_DIR)/include/LocalMsgIndex.hpp $(XALANCROOT)/src/xalanc/PlatformSupport -+ $(INSTALL_DATA) $(XSL_NLS_DIR)/include/LocalMsgIndex.hpp $(XALANCROOT)/src/xalanc/PlatformSupport - - doClean: - $(MAKE) -C XalanMsgLib $@ ---- Makefile.in.orig Sun Feb 29 21:30:03 2004 -+++ Makefile.in Sun Feb 29 21:30:17 2004 -@@ -85,8 +85,8 @@ - - install-extras: - $(MKINSTALLDIRS) $(DESTDIR)/$(prefix) -- $(INSTALL_PROGRAM) $(XALANCROOT)/../KEYS.txt $(DESTDIR)/$(prefix) -- $(INSTALL_PROGRAM) $(XALANCROOT)/License $(DESTDIR)/$(prefix) -+ $(INSTALL_DATA) $(XALANCROOT)/../KEYS.txt $(DESTDIR)/$(prefix) -+ $(INSTALL_DATA) $(XALANCROOT)/License $(DESTDIR)/$(prefix) - - - diff -ruN /usr/ports/textproc/xalan-c/files/patch-src-xalanc-Utils-MsgCreator-Makefile.in xalan-c/files/patch-src-xalanc-Utils-MsgCreator-Makefile.in --- /usr/ports/textproc/xalan-c/files/patch-src-xalanc-Utils-MsgCreator-Makefile.in Wed Dec 31 16:00:00 1969 +++ xalan-c/files/patch-src-xalanc-Utils-MsgCreator-Makefile.in Tue Oct 26 20:22:57 2004 @@ -0,0 +1,12 @@ +--- src/xalanc/Utils/MsgCreator/Makefile.in.orig Tue Oct 26 20:20:32 2004 ++++ src/xalanc/Utils/MsgCreator/Makefile.in Tue Oct 26 20:21:15 2004 +@@ -29,7 +29,8 @@ + + $(XSL_BIN_DIR)/MsgCreator : $(MSG_CREATOR_OBJECTS) + ${LINK} $(XSL_BUILD_OPTIONS) ${PLATFORM_LIB_LINK_OPTIONS} ${LIBRARY_SEARCH_PATHS} \ +- ${EXTRA_LINK_OPTIONS} $(XERCES_LIB) $^ -o $@ $(LOC_OTHER_LINK_PARAMETERS) ++ ${EXTRA_LINK_OPTIONS} $(XERCES_LIB) $^ -o $@ $(LOC_OTHER_LINK_PARAMETERS) \ ++ -pthread + + $(XSL_OBJ_DIR)/%.o : $(MSG_CREATOR_SRC)/%.cpp + $(CC1) $(XSL_BUILD_OPTIONS) -c $(XSL_INCL) $(EXTRA_COMPILE_OPTIONS) -o $@ $< diff -ruN /usr/ports/textproc/xalan-c/pkg-plist xalan-c/pkg-plist --- /usr/ports/textproc/xalan-c/pkg-plist Sun Apr 18 17:24:51 2004 +++ xalan-c/pkg-plist Thu Oct 28 16:12:13 2004 @@ -7,15 +7,16 @@ include/xalanc/DOMSupport/TreeWalker.hpp include/xalanc/DOMSupport/XalanDocumentPrefixResolver.hpp include/xalanc/DOMSupport/XalanNamespacesStack.hpp -%%ICUDEP%%include/xalanc/ICUBridge/FunctionICUFormatNumber.hpp %%ICUDEP%%include/xalanc/ICUBridge/ICUBridge.hpp %%ICUDEP%%include/xalanc/ICUBridge/ICUBridgeCleanup.hpp %%ICUDEP%%include/xalanc/ICUBridge/ICUBridgeCollationCompareFunctor.hpp %%ICUDEP%%include/xalanc/ICUBridge/ICUBridgeCollationCompareFunctorImpl.hpp %%ICUDEP%%include/xalanc/ICUBridge/ICUBridgeDefinitions.hpp +%%ICUDEP%%include/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp %%ICUDEP%%include/xalanc/ICUBridge/ICUXalanNumberFormatFactory.hpp %%ICUDEP%%include/xalanc/ICUBridge/ICUXalanNumberFormatProxy.hpp include/xalanc/Include/AIXDefinitions.hpp +include/xalanc/Include/CygwinDefinitions.hpp include/xalanc/Include/GCCDefinitions.hpp include/xalanc/Include/HPUXDefinitions.hpp include/xalanc/Include/IntelDefinitions.hpp @@ -65,7 +66,6 @@ include/xalanc/PlatformSupport/XalanDOMStringCache.hpp include/xalanc/PlatformSupport/XalanDOMStringHashTable.hpp include/xalanc/PlatformSupport/XalanDOMStringPool.hpp -include/xalanc/PlatformSupport/XalanDecimalFormat.hpp include/xalanc/PlatformSupport/XalanDecimalFormatSymbols.hpp include/xalanc/PlatformSupport/XalanEncodingPropertyCache.hpp include/xalanc/PlatformSupport/XalanFStreamOutputStream.hpp @@ -89,19 +89,6 @@ include/xalanc/PlatformSupport/XalanUTF16Transcoder.hpp include/xalanc/PlatformSupport/XalanUnicode.hpp include/xalanc/PlatformSupport/XalanXMLChar.hpp -@comment include/xalanc/TestXPath/NodeNameTreeWalker.hpp -@comment include/xalanc/Utils/MsgCreator/ICUResData.hpp -@comment include/xalanc/Utils/MsgCreator/ICUResHandler.hpp -@comment include/xalanc/Utils/MsgCreator/InMemData.hpp -@comment include/xalanc/Utils/MsgCreator/InMemHandler.hpp -@comment include/xalanc/Utils/MsgCreator/IndexFileData.hpp -@comment include/xalanc/Utils/MsgCreator/MsgCreator.hpp -@comment include/xalanc/Utils/MsgCreator/MsgFileOutputStream.hpp -@comment include/xalanc/Utils/MsgCreator/NLSData.hpp -@comment include/xalanc/Utils/MsgCreator/NLSHandler.hpp -@comment include/xalanc/Utils/MsgCreator/SAX2Handler.hpp -@comment include/xalanc/Utils/XalanMsgLib/XalanMsgLib.hpp -@comment include/xalanc/Utils/XalanMsgLib/XalanMsgLibDefinitions.hpp include/xalanc/XMLSupport/FormatterToDOM.hpp include/xalanc/XMLSupport/FormatterToHTML.hpp include/xalanc/XMLSupport/FormatterToNull.hpp @@ -298,6 +285,7 @@ include/xalanc/XSLT/XalanNumberingResourceBundle.hpp include/xalanc/XSLT/XalanSourceTreeDocumentAllocator.hpp include/xalanc/XSLT/XalanSourceTreeDocumentFragmentAllocator.hpp +include/xalanc/XSLT/XalanSpaceNodeTester.hpp include/xalanc/XalanDOM/XalanAttr.hpp include/xalanc/XalanDOM/XalanCDATASection.hpp include/xalanc/XalanDOM/XalanCharacterData.hpp @@ -443,24 +431,21 @@ include/xalanc/XercesParserLiaison/XercesWrapperNavigator.hpp include/xalanc/XercesParserLiaison/XercesWrapperToXalanNodeMap.hpp include/xalanc/XercesParserLiaison/XercesWrapperTypes.hpp -@dirrm include/xalanc/DOMSupport -%%ICUDEP%%@dirrm include/xalanc/ICUBridge -@dirrm include/xalanc/Include -@dirrm include/xalanc/PlatformSupport -@comment @dirrm include/xalanc/TestXPath -@comment @dirrm include/xalanc/Utils/MsgCreator -@comment @dirrm include/xalanc/Utils/XalanMsgLib -@dirrm include/xalanc/XMLSupport -@dirrm include/xalanc/XPath -@dirrm include/xalanc/XPathCAPI -@dirrm include/xalanc/XSLT -@dirrm include/xalanc/XalanDOM -@dirrm include/xalanc/XalanEXSLT -@dirrm include/xalanc/XalanExtensions -@dirrm include/xalanc/XalanSourceTree -@dirrm include/xalanc/XalanTransformer @dirrm include/xalanc/XercesParserLiaison/Deprecated @dirrm include/xalanc/XercesParserLiaison +@dirrm include/xalanc/XalanTransformer +@dirrm include/xalanc/XalanSourceTree +@dirrm include/xalanc/XalanExtensions +@dirrm include/xalanc/XalanEXSLT +@dirrm include/xalanc/XalanDOM +@dirrm include/xalanc/XSLT +@dirrm include/xalanc/XPathCAPI +@dirrm include/xalanc/XPath +@dirrm include/xalanc/XMLSupport +@dirrm include/xalanc/PlatformSupport +@dirrm include/xalanc/Include +%%ICUDEP%%@dirrm include/xalanc/ICUBridge +@dirrm include/xalanc/DOMSupport @dirrm include/xalanc bin/Xalan %%LOCALSYS_NLS%%lib/nls/msg/en_US/XalanMsg_en_US.cat @@ -475,8 +460,6 @@ lib/%%XALANC_LIB%% @exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so @exec ln -fs %%XALANC_LIB%% %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%% -@unexec if test -L %D/lib/libxalan-c.so; then rm -f %D/lib/libxalan-c.so; fi -@unexec if test -L %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%%; then rm -f %D/lib/libxalan-c.so.%%XALANC_LIB_VERSION%%; fi @comment ----------------------------------------------------------------------- @comment @comment SAMPLES @@ -500,80 +483,80 @@ @comment @comment SAMPLE SRC @comment +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/mod_xslt.c +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/CompileStylesheet.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo1.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo10.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo2.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo3.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo4.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo5.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo6.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo7.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo8.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo9.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/DocumentBuilder.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/foo.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/ExternalFunction.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/ParsedSourceWrappers.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/SerializeNodeSet.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/SimpleTransform.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/SimpleXPathAPI.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/SimpleXPathCAPI.c +%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/StreamTransform/StreamTransform.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/ThreadSafe.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/TraceListen/TraceListen.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/TransformToXercesDOM.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/UseStylesheetParam.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xsl +%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/TestDriver.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.hpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransform/XalanTransform.cpp +%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xml +%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xsl %%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/XalanTransformerCallback.cpp %%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/foo.xml %%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransformerCallback/foo.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/XalanTransformerCallback -%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransform/XalanTransform.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/XalanTransform/foo.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/XalanTransform -%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/TestDriver.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/XPathWrapper.hpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/XPathWrapper/foo.xml %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/XPathWrapper -%%NO_SAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/UseStylesheetParam.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/UseStylesheetParam/foo.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/UseStylesheetParam -%%NO_SAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/TransformToXercesDOM.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/TransformToXercesDOM/birds.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/TransformToXercesDOM -%%NO_SAMPLES%%%%EXAMPLESDIR%%/TraceListen/TraceListen.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/TraceListen/birds.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/TraceListen -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/ThreadSafe.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ThreadSafe/birds.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ThreadSafe -%%NO_SAMPLES%%%%EXAMPLESDIR%%/StreamTransform/StreamTransform.cpp %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/StreamTransform -%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/SimpleXPathCAPI.c -%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathCAPI/foo.xml %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleXPathCAPI -%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/SimpleXPathAPI.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleXPathAPI/foo.xml %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleXPathAPI -%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/SimpleTransform.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/SimpleTransform/foo.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SimpleTransform -%%NO_SAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/SerializeNodeSet.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/SerializeNodeSet/foo.xml %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SerializeNodeSet -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/ParsedSourceWrappers.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ParsedSourceWrappers/foo.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ParsedSourceWrappers -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/ExternalFunction.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ExternalFunction/foo.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ExternalFunction -%%NO_SAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/DocumentBuilder.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/DocumentBuilder/foo.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/DocumentBuilder -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/CompileStylesheet.cpp -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo.xsl -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo1.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo10.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo2.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo3.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo4.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo5.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo6.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo7.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo8.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/CompileStylesheet/foo9.xml %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/CompileStylesheet -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/apachemod.xsl -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xml -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/xslt/foo.xsl %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ApacheModuleXSLT/xslt -%%NO_SAMPLES%%%%EXAMPLESDIR%%/ApacheModuleXSLT/mod_xslt.c %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/ApacheModuleXSLT %%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%% >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200410290002.i9T02XQb055987>