diff options
Diffstat (limited to 'textproc/xerces-c27')
-rw-r--r-- | textproc/xerces-c27/Makefile | 180 | ||||
-rw-r--r-- | textproc/xerces-c27/distinfo | 3 | ||||
-rw-r--r-- | textproc/xerces-c27/files/patch-aa | 144 | ||||
-rw-r--r-- | textproc/xerces-c27/files/patch-ab | 15 | ||||
-rw-r--r-- | textproc/xerces-c27/files/patch-src-xercesc-Makefile.incl | 11 | ||||
-rw-r--r-- | textproc/xerces-c27/pkg-descr | 9 | ||||
-rw-r--r-- | textproc/xerces-c27/pkg-plist | 618 | ||||
-rw-r--r-- | textproc/xerces-c27/scripts/check-config-options | 24 |
8 files changed, 0 insertions, 1004 deletions
diff --git a/textproc/xerces-c27/Makefile b/textproc/xerces-c27/Makefile deleted file mode 100644 index 92a2bf9caeb0..000000000000 --- a/textproc/xerces-c27/Makefile +++ /dev/null @@ -1,180 +0,0 @@ -# New ports collection makefile for: xerces-c2 -# Date created: 06 September 2002 -# Whom: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net) -# -# $FreeBSD$ -# - -PORTNAME= xerces-c2 -PORTVERSION= 2.7.0 -PORTREVISION= 1 -CATEGORIES= textproc -MASTER_SITES= ${MASTER_SITE_APACHE_XML} -MASTER_SITE_SUBDIR= xerces-c/source -DISTNAME= xerces-c-src_${PORTVERSION:S/./_/g} - -MAINTAINER= kenm@icarz.com -COMMENT= Validating XML parser from the Apache XML Project - -OPTIONS= THREADS "Build a thread enabled shared library." on \ - DEBUG "Include debugging information, do not strip." off \ - ICONVFBSD "Use IconvFBSD transcoder." on \ - ICU "Use ICU transcoder." off \ - NATIVE "Use native transcoder." off - -.include <bsd.port.pre.mk> - -.if defined(WITH_NATIVE) -TRANSCODER= native -.endif -.if defined(WITH_ICU) -TRANSCODER= icu -.endif -.if defined(WITH_ICONVFBSD) -TRANSCODER= IconvFBSD -.endif - -.if !defined(TRANSCODER) -USE_ICONV= yes -TRANSCODER= IconvFBSD -ICONVROOT?= ${LOCALBASE} -CONFIGURE_ENV+= ICONVROOT=${ICONVROOT} -MAKE_ENV+= ICONVROOT=${ICONVROOT} -PLIST_SUB+= TRANSICONV="" -PLIST_SUB+= TRANSICU="@comment " -.else -.if (${TRANSCODER} == "icu") -PKGNAMESUFFIX+= -icu -LIB_DEPENDS+= icuuc:${PORTSDIR}/devel/icu -ICUROOT?= ${LOCALBASE} -CONFIGURE_ENV+= ICUROOT=${ICUROOT} -MAKE_ENV+= ICUROOT=${ICUROOT} -PLIST_SUB+= TRANSICONV="@comment " -PLIST_SUB+= TRANSICU="" -.elif (${TRANSCODER} == "native") -PKGNAMESUFFIX+= -native -PLIST_SUB+= TRANSICONV="" -PLIST_SUB+= TRANSICU="@comment " -.else -USE_ICONV= yes -TRANSCODER= IconvFBSD -ICONVROOT?= ${LOCALBASE} -CONFIGURE_ENV+= ICONVROOT=${ICONVROOT} -MAKE_ENV+= ICONVROOT=${ICONVROOT} -PLIST_SUB+= TRANSICONV="" -PLIST_SUB+= TRANSICU="@comment " -.endif -.endif - -USE_LDCONFIG= yes - -XERCESWRKSRC= ${WRKSRC}/src/xercesc -CONFIGURE_WRKSRC= ${XERCESWRKSRC} -BUILD_WRKSRC= ${XERCESWRKSRC} -INSTALL_WRKSRC= ${XERCESWRKSRC} - -USE_GMAKE= yes -MAKE_ENV+= XERCESCROOT=${WRKSRC} - -HAS_CONFIGURE= yes -CONFIGURE_ENV+= XERCESCROOT=${WRKSRC} TRANSCODER=${TRANSCODER} -CONFIGURE_SCRIPT= runConfigure -CONFIGURE_ARGS+= -p freebsd -c ${CC} -x ${CXX} -n socket -P ${PREFIX} - -CONFIGURE_ARGS+= -t ${TRANSCODER} - -.if defined(WITH_DEBUG) -CONFIGURE_ARGS+= -d -.endif - -.if defined(ARCH) && \ - (${ARCH} == "alpha" || ${ARCH} == "sparc64" || \ - ${ARCH} == "amd64" || ${ARCH} == "ia64") -# set bitsToBuild to 64 -CONFIGURE_ARGS+= -b 64 -SAMPLES_CONFIG_ARGS+= -b 64 -.endif - -.if defined(WITHOUT_THREADS) -CONFIGURE_ARGS+= -r none -.else -CONFIGURE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" -.endif - -XERCESC_LIB_VERSION= ${PORTVERSION:S/.//:R} -XERCESC_LIB= libxerces-c.so.${PORTVERSION:S/.//} -XERCESC_DEPDOM_LIB= libxerces-depdom.so.${PORTVERSION:S/.//} -PLIST_SUB+= XERCESC_LIB=${XERCESC_LIB} \ - XERCESC_DEPDOM_LIB=${XERCESC_DEPDOM_LIB} \ - XERCESC_LIB_VERSION=${XERCESC_LIB_VERSION} - -.if !defined(NOPORTEXAMPLES) -ALL_TARGET?= all samples -XERCES_BINS?= CreateDOMDocument DOMCount DOMPrint EnumVal MemParse PParse \ - PSVIWriter Redirect SAX2Count SAX2Print SAXCount SAXPrint \ - SCMPrint SEnumVal StdInParse -SAMPLES_CONFIG_ARGS+= -p freebsd -c ${CC} -x ${CXX} -.if defined(WITHOUT_THREADS) -SAMPLES_CONFIG_ARGS+= -r none -.else -SAMPLES_CONFIG_ARGS+= -r pthread -SAMPLES_CONFIG_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" -.endif -.endif - -.if !defined(NOPORTDOCS) -PORTDOCS= * -.endif - -SCRIPTS_ENV= WITH_NATIVE="${WITH_NATIVE}" \ - WITH_ICU="${WITH_ICU}" \ - WITH_ICONVFBSD="${WITH_ICONVFBSD}" - -pre-extract: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/check-config-options - -post-patch: - @${REINPLACE_CMD} -e 's#CP = -cp -p#CP = -cp#' \ - ${WRKSRC}/src/xercesc/Makefile.incl - -pre-configure: - @${CHMOD} 700 ${CONFIGURE_WRKSRC}/runConfigure - @${CHMOD} 700 ${CONFIGURE_WRKSRC}/configure - -post-configure: -.if !defined(NOPORTEXAMPLES) -.if defined(TRANSCODER) && (${TRANSCODER} == "icu") - @(cd ${WRKSRC}/samples && \ - ${SETENV} \ - XERCESCROOT=${WRKSRC} \ - ICUROOT=${ICUROOT} \ - LDFLAGS="-L${LOCALBASE}/lib" \ - ${SAMPLES_CONFIG_ENV} \ - ${SH} runConfigure ${SAMPLES_CONFIG_ARGS}) -.else - @(cd ${WRKSRC}/samples && \ - ${SETENV} \ - XERCESCROOT=${WRKSRC} \ - ${SAMPLES_CONFIG_ENV} \ - ${SH} runConfigure ${SAMPLES_CONFIG_ARGS}) -.endif -.endif - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @${CP} -r ${WRKSRC}/doc/ ${DOCSDIR} -.endif -.if !defined(NOPORTEXAMPLES) - @${MKDIR} ${EXAMPLESDIR} -.for i in ${XERCES_BINS} data - @${CP} -r ${WRKSRC}/samples/$i ${EXAMPLESDIR} -.endfor -.for i in ${XERCES_BINS} - @${INSTALL_PROGRAM} ${WRKSRC}/bin/$i ${PREFIX}/bin -.endfor -.endif - -.include <bsd.port.post.mk> diff --git a/textproc/xerces-c27/distinfo b/textproc/xerces-c27/distinfo deleted file mode 100644 index b7bc120e8068..000000000000 --- a/textproc/xerces-c27/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (xerces-c-src_2_7_0.tar.gz) = 04169609449a8846bc1e6891c04cadf4 -SHA256 (xerces-c-src_2_7_0.tar.gz) = 77fae8a1e7aa58007115c939aa68fd5028da79c481fc457dfce546b50c9dfda5 -SIZE (xerces-c-src_2_7_0.tar.gz) = 7760004 diff --git a/textproc/xerces-c27/files/patch-aa b/textproc/xerces-c27/files/patch-aa deleted file mode 100644 index e058afbec12b..000000000000 --- a/textproc/xerces-c27/files/patch-aa +++ /dev/null @@ -1,144 +0,0 @@ ---- samples/runConfigure.orig Tue Jan 13 19:42:18 2004 -+++ samples/runConfigure Thu Mar 11 17:11:03 2004 -@@ -271,8 +271,13 @@ - ;; - esac - elif test $platform = "freebsd"; then -- threadingLibs="-pthread -lc_r" -- threadingDefines="-D_THREAD_SAFE -DXML_USE_PTHREADS" -+ if test -n "${PTHREAD_LIBS}" ; then -+ threadingLibs="${PTHREAD_LIBS}" -+ threadingDefines="${PTHREAD_CFLAGS} -DXML_USE_PTHREADS" -+ else -+ threadingLibs="-lpthread" -+ threadingDefines="-DXML_USE_PTHREADS" -+ fi - elif test $platform = "netbsd"; then - threadingLibs="-pthread" - threadingDefines="-D_THREAD_SAFE -DXML_USE_PTHREADS" -@@ -390,38 +395,6 @@ - # - BITSTOBUILD=$bitsToBuild - export BITSTOBUILD -- --# --# Special test for libiconv necessity under FreeBSD --# --transcodingLibs="" # by default don't suppose the libiconv is necessary --transcodingDefines="" --if test $platform = "freebsd"; then -- if test -n "${XERCESCROOT}"; then -- # try lookup the configuration results -- . "${XERCESCROOT}/version.incl" -- SOLIBNAME=libxerces-c.so.${SO_TARGET_VERSION}.${SO_TARGET_VERSION_MAJOR} -- if test -f "${XERCESCROOT}/src/xercesc/config.log" ; then -- if grep XML_USE_LIBICONV "${XERCESCROOT}/src/xercesc/config.log" \ -- > /dev/null 2>&1 ; then -- transcodingLibs=" -L/usr/local/lib -liconv " -- transcodingDefines=" -DXML_USE_LIBICONV -I/usr/local/include " -- fi -- elif test -f "${XERCESCROOT}/obj/FREEBSD/IconvFBSDTransService.o" ; then -- if nm "${XERCESCROOT}/obj/FREEBSD/IconvFBSDTransService.o" | \ -- grep iconv_open > /dev/null 2>&1 ; then -- transcodingLibs=" -L/usr/local/lib -liconv " -- transcodingDefines=" -DXML_USE_LIBICONV -I/usr/local/include " -- fi -- elif test -f "${XERCESCROOT}/lib/${SOLIBNAME}" ; then -- if nm "${XERCESCROOT}/lib/${SOLIBNAME}" | \ -- grep iconv_open > /dev/null 2>&1 ; then -- transcodingLibs=" -L/usr/local/lib -liconv " -- transcodingDefines=" -DXML_USE_LIBICONV -I/usr/local/include " -- fi -- fi -- fi --fi - - # - # Set the C compiler and C++ compiler environment variables ---- src/xercesc/runConfigure.orig Wed Feb 4 13:26:44 2004 -+++ src/xercesc/runConfigure Thu Mar 11 17:10:00 2004 -@@ -319,8 +319,13 @@ - ;; - esac - elif test $platform = "freebsd"; then -- threadingLibs="-pthread -lc_r" -+ if test -n "${PTHREAD_LIBS}" ; then -+ threadingLibs="${PTHREAD_LIBS}" -+ threadingDefines="${PTHREAD_CFLAGS} -DXML_USE_PTHREADS" -+ else -+ threadingLibs="-lpthread" - threadingDefines="-D_THREAD_SAFE -DXML_USE_PTHREADS" -+ fi - elif test $platform = "netbsd"; then - threadingLibs="-pthread -lpthread" - threadingDefines="-D_THREAD_SAFE -DXML_USE_PTHREADS" -@@ -467,7 +472,11 @@ - TRANSCODER=Uniconv390 ;; - IconvFBSD) - TRANSCODER=IconvFBSD ; -- transcodingDefines="-DXML_USE_LIBICONV -I/usr/local/include" ;; -+ transcodingDefines="-DXML_USE_LIBICONV -I/usr/local/include" ; -+ if test ${ICONVROOT}o != "o"; then -+ ICONVROOT=/usr/local -+ fi -+ transcodingLibs="-L${ICONVROOT} -L${ICONVROOT}/lib -liconv" ;; - IconvGNU) - TRANSCODER=IconvGNU ; - transcodingDefines="-DXML_USE_GNU_TRANSCODER -I/usr/local/include" ;; ---- tests/runConfigure.orig Thu Mar 11 17:11:09 2004 -+++ tests/runConfigure Thu Mar 11 17:12:03 2004 -@@ -270,8 +270,13 @@ - ;; - esac - elif test $platform = "freebsd"; then -- threadingLibs="-pthread -lc_r" -- threadingDefines="-D_THREAD_SAFE -DXML_USE_PTHREADS" -+ if test -n "${PTHREAD_LIBS}" ; then -+ threadingLibs="${PTHREAD_LIBS}" -+ threadingDefines="${PTHREAD_CFLAGS} -DXML_USE_PTHREADS" -+ else -+ threadingLibs="-lpthread" -+ threadingDefines="-DXML_USE_PTHREADS" -+ fi - elif test $platform = "netbsd"; then - threadingLibs="-pthread" - threadingDefines="-D_THREAD_SAFE -DXML_USE_PTHREADS" -@@ -389,38 +394,6 @@ - # - BITSTOBUILD=$bitsToBuild - export BITSTOBUILD -- --# --# Special test for libiconv necessity under FreeBSD --# --transcodingLibs="" # by default don't suppose the libiconv is necessary --transcodingDefines="" --if test $platform = "freebsd"; then -- if test -n "${XERCESCROOT}"; then -- # try lookup the configuration results -- . "${XERCESCROOT}/version.incl" -- SOLIBNAME=libxerces-c.so.${SO_TARGET_VERSION}.${SO_TARGET_VERSION_MAJOR} -- if test -f "${XERCESCROOT}/src/xercesc/config.log" ; then -- if grep XML_USE_LIBICONV "${XERCESCROOT}/src/xercesc/config.log" \ -- > /dev/null 2>&1 ; then -- transcodingLibs=" -L/usr/local/lib -liconv " -- transcodingDefines=" -DXML_USE_LIBICONV -I/usr/local/include " -- fi -- elif test -f "${XERCESCROOT}/obj/FREEBSD/IconvFBSDTransService.o" ; then -- if nm "${XERCESCROOT}/obj/FREEBSD/IconvFBSDTransService.o" | \ -- grep iconv_open > /dev/null 2>&1 ; then -- transcodingLibs=" -L/usr/local/lib -liconv " -- transcodingDefines=" -DXML_USE_LIBICONV -I/usr/local/include " -- fi -- elif test -f "${XERCESCROOT}/lib/${SOLIBNAME}" ; then -- if nm "${XERCESCROOT}/lib/${SOLIBNAME}" | \ -- grep iconv_open > /dev/null 2>&1 ; then -- transcodingLibs=" -L/usr/local/lib -liconv " -- transcodingDefines=" -DXML_USE_LIBICONV -I/usr/local/include " -- fi -- fi -- fi --fi - - # - # Set the C compiler and C++ compiler environment variables diff --git a/textproc/xerces-c27/files/patch-ab b/textproc/xerces-c27/files/patch-ab deleted file mode 100644 index baff3780692e..000000000000 --- a/textproc/xerces-c27/files/patch-ab +++ /dev/null @@ -1,15 +0,0 @@ ---- obj/Makefile.in.orig Wed Sep 7 11:56:58 2005 -+++ obj/Makefile.in Wed Mar 29 11:50:22 2006 -@@ -235,10 +235,10 @@ - (cd ${DESTDIR}$(PREFIX)/lib; rm -f ${LINK_DEPDOM}.a libxercesdepdom.dll.a; ln -s ${LIBDEPDOM}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a ${LINK_DEPDOM}.a; rm -f libxercesdepdom.dll.a; ln -s ${LIBDEPDOM}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a libxercesdepdom.dll.a) - else - $(CP) ${FQ_REAL_NAME} ${DESTDIR}$(PREFIX)/lib -- (cd ${DESTDIR}$(PREFIX)/lib; rm -f ${SO_NAME}; ln -s ${REAL_NAME} ${SO_NAME}; rm -f ${LINK_NAME}; ln -s ${REAL_NAME} ${LINK_NAME}) -+ (cd ${DESTDIR}$(PREFIX)/lib; rm -f ${SO_NAME}; ln -sf ${REAL_NAME} ${SO_NAME}; rm -f ${LINK_NAME}; ln -sf ${REAL_NAME} ${LINK_NAME}) - - $(CP) ${FQ_REAL_DEPDOM} ${DESTDIR}$(PREFIX)/lib -- (cd ${DESTDIR}$(PREFIX)/lib; rm -f ${SO_DEPDOM}; ln -s ${REAL_DEPDOM} ${SO_DEPDOM}; rm -f ${LINK_DEPDOM}; ln -s ${REAL_DEPDOM} ${LINK_DEPDOM}) -+ (cd ${DESTDIR}$(PREFIX)/lib; rm -f ${SO_DEPDOM}; ln -sf ${REAL_DEPDOM} ${SO_DEPDOM}; rm -f ${LINK_DEPDOM}; ln -sf ${REAL_DEPDOM} ${LINK_DEPDOM}) - endif - ifeq (${PLATFORM},OS390) - $(CP) ${LIBNAME}${VER}${OS390SIDEDECK} ${DESTDIR}$(PREFIX)/lib diff --git a/textproc/xerces-c27/files/patch-src-xercesc-Makefile.incl b/textproc/xerces-c27/files/patch-src-xercesc-Makefile.incl deleted file mode 100644 index 9b42675607ea..000000000000 --- a/textproc/xerces-c27/files/patch-src-xercesc-Makefile.incl +++ /dev/null @@ -1,11 +0,0 @@ ---- src/xercesc/Makefile.incl.orig Wed Sep 7 11:55:53 2005 -+++ src/xercesc/Makefile.incl Mon Apr 10 14:54:15 2006 -@@ -411,7 +411,7 @@ - MAKE_SHARED_C = ${CC} -D${PLATFORM} -shared -fPIC ${LDFLAGS} - ifeq (${TRANSCODER}, ICU) - PLATFORM_COMPILE_OPTIONS = -fPIC -D${PLATFORM} -I/usr/local/include -- ALLLIBS = ${LIBS} -L/usr/local/lib -L${ICUROOT} -licuuc -licudata -lgcc -+ ALLLIBS = ${LIBS} -L/usr/local/lib -L${ICUROOT} -licuuc -licudata -lgcc_pic - else - PLATFORM_COMPILE_OPTIONS = -fPIC -D${PLATFORM} - ALLLIBS = ${LIBS} diff --git a/textproc/xerces-c27/pkg-descr b/textproc/xerces-c27/pkg-descr deleted file mode 100644 index 9d6e1747a2bb..000000000000 --- a/textproc/xerces-c27/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Xerces-C++ is a validating XML parser from the Apache XML Project. -It provides a shared library to parse, generate, mainpulate and -validate XML documents from within your own application. - -For information on Xerces-C++ please see their homepage -WWW: http://xml.apache.org/xerces-c/ - -- Bjoern A. Zeeb -bzeeb+freebsdports@zabbadoz.net diff --git a/textproc/xerces-c27/pkg-plist b/textproc/xerces-c27/pkg-plist deleted file mode 100644 index 3949e1cf9e65..000000000000 --- a/textproc/xerces-c27/pkg-plist +++ /dev/null @@ -1,618 +0,0 @@ -include/xercesc/dom/DOM.hpp -include/xercesc/dom/DOMAttr.hpp -include/xercesc/dom/DOMBuilder.hpp -include/xercesc/dom/DOMCDATASection.hpp -include/xercesc/dom/DOMCharacterData.hpp -include/xercesc/dom/DOMComment.hpp -include/xercesc/dom/DOMConfiguration.hpp -include/xercesc/dom/DOMDocument.hpp -include/xercesc/dom/DOMDocumentFragment.hpp -include/xercesc/dom/DOMDocumentRange.hpp -include/xercesc/dom/DOMDocumentTraversal.hpp -include/xercesc/dom/DOMDocumentType.hpp -include/xercesc/dom/DOMElement.hpp -include/xercesc/dom/DOMEntity.hpp -include/xercesc/dom/DOMEntityReference.hpp -include/xercesc/dom/DOMEntityResolver.hpp -include/xercesc/dom/DOMError.hpp -include/xercesc/dom/DOMErrorHandler.hpp -include/xercesc/dom/DOMException.hpp -include/xercesc/dom/DOMImplementation.hpp -include/xercesc/dom/DOMImplementationLS.hpp -include/xercesc/dom/DOMImplementationRegistry.hpp -include/xercesc/dom/DOMImplementationSource.hpp -include/xercesc/dom/DOMInputSource.hpp -include/xercesc/dom/DOMLocator.hpp -include/xercesc/dom/DOMNamedNodeMap.hpp -include/xercesc/dom/DOMNode.hpp -include/xercesc/dom/DOMNodeFilter.hpp -include/xercesc/dom/DOMNodeIterator.hpp -include/xercesc/dom/DOMNodeList.hpp -include/xercesc/dom/DOMNotation.hpp -include/xercesc/dom/DOMPSVITypeInfo.hpp -include/xercesc/dom/DOMProcessingInstruction.hpp -include/xercesc/dom/DOMRange.hpp -include/xercesc/dom/DOMRangeException.hpp -include/xercesc/dom/DOMText.hpp -include/xercesc/dom/DOMTreeWalker.hpp -include/xercesc/dom/DOMTypeInfo.hpp -include/xercesc/dom/DOMUserDataHandler.hpp -include/xercesc/dom/DOMWriter.hpp -include/xercesc/dom/DOMWriterFilter.hpp -include/xercesc/dom/DOMXPathEvaluator.hpp -include/xercesc/dom/DOMXPathException.hpp -include/xercesc/dom/DOMXPathExpression.hpp -include/xercesc/dom/DOMXPathNSResolver.hpp -include/xercesc/dom/DOMXPathNamespace.hpp -include/xercesc/dom/DOMXPathResult.hpp -include/xercesc/dom/StDOMNode.hpp -include/xercesc/dom/deprecated/DOM.hpp -include/xercesc/dom/deprecated/DOMParser.hpp -include/xercesc/dom/deprecated/DOMString.hpp -include/xercesc/dom/deprecated/DOM_Attr.hpp -include/xercesc/dom/deprecated/DOM_CDATASection.hpp -include/xercesc/dom/deprecated/DOM_CharacterData.hpp -include/xercesc/dom/deprecated/DOM_Comment.hpp -include/xercesc/dom/deprecated/DOM_DOMException.hpp -include/xercesc/dom/deprecated/DOM_DOMImplementation.hpp -include/xercesc/dom/deprecated/DOM_Document.hpp -include/xercesc/dom/deprecated/DOM_DocumentFragment.hpp -include/xercesc/dom/deprecated/DOM_DocumentType.hpp -include/xercesc/dom/deprecated/DOM_Element.hpp -include/xercesc/dom/deprecated/DOM_Entity.hpp -include/xercesc/dom/deprecated/DOM_EntityReference.hpp -include/xercesc/dom/deprecated/DOM_NamedNodeMap.hpp -include/xercesc/dom/deprecated/DOM_Node.hpp -include/xercesc/dom/deprecated/DOM_NodeFilter.hpp -include/xercesc/dom/deprecated/DOM_NodeIterator.hpp -include/xercesc/dom/deprecated/DOM_NodeList.hpp -include/xercesc/dom/deprecated/DOM_Notation.hpp -include/xercesc/dom/deprecated/DOM_ProcessingInstruction.hpp -include/xercesc/dom/deprecated/DOM_Range.hpp -include/xercesc/dom/deprecated/DOM_RangeException.hpp -include/xercesc/dom/deprecated/DOM_Text.hpp -include/xercesc/dom/deprecated/DOM_TreeWalker.hpp -include/xercesc/dom/deprecated/DOM_XMLDecl.hpp -include/xercesc/dom/deprecated/DomMemDebug.hpp -include/xercesc/dom/impl/DOMDeepNodeListPool.c -include/xercesc/framework/BinOutputStream.hpp -include/xercesc/framework/LocalFileFormatTarget.hpp -include/xercesc/framework/LocalFileInputSource.hpp -include/xercesc/framework/MemBufFormatTarget.hpp -include/xercesc/framework/MemBufInputSource.hpp -include/xercesc/framework/MemoryManager.hpp -include/xercesc/framework/StdInInputSource.hpp -include/xercesc/framework/StdOutFormatTarget.hpp -include/xercesc/framework/URLInputSource.hpp -include/xercesc/framework/ValidationContext.hpp -include/xercesc/framework/Wrapper4DOMInputSource.hpp -include/xercesc/framework/Wrapper4InputSource.hpp -include/xercesc/framework/XMLAttDef.hpp -include/xercesc/framework/XMLAttDefList.hpp -include/xercesc/framework/XMLAttr.hpp -include/xercesc/framework/XMLBuffer.hpp -include/xercesc/framework/XMLBufferMgr.hpp -include/xercesc/framework/XMLContentModel.hpp -include/xercesc/framework/XMLDTDDescription.hpp -include/xercesc/framework/XMLDocumentHandler.hpp -include/xercesc/framework/XMLElementDecl.hpp -include/xercesc/framework/XMLEntityDecl.hpp -include/xercesc/framework/XMLEntityHandler.hpp -include/xercesc/framework/XMLErrorCodes.hpp -include/xercesc/framework/XMLErrorReporter.hpp -include/xercesc/framework/XMLFormatter.hpp -include/xercesc/framework/XMLGrammarDescription.hpp -include/xercesc/framework/XMLGrammarPool.hpp -include/xercesc/framework/XMLNotationDecl.hpp -include/xercesc/framework/XMLPScanToken.hpp -include/xercesc/framework/XMLRecognizer.hpp -include/xercesc/framework/XMLRefInfo.hpp -include/xercesc/framework/XMLSchemaDescription.hpp -include/xercesc/framework/XMLValidator.hpp -include/xercesc/framework/XMLValidityCodes.hpp -include/xercesc/framework/psvi/PSVIAttribute.hpp -include/xercesc/framework/psvi/PSVIAttributeList.hpp -include/xercesc/framework/psvi/PSVIElement.hpp -include/xercesc/framework/psvi/PSVIHandler.hpp -include/xercesc/framework/psvi/PSVIItem.hpp -include/xercesc/framework/psvi/XSAnnotation.hpp -include/xercesc/framework/psvi/XSAttributeDeclaration.hpp -include/xercesc/framework/psvi/XSAttributeGroupDefinition.hpp -include/xercesc/framework/psvi/XSAttributeUse.hpp -include/xercesc/framework/psvi/XSComplexTypeDefinition.hpp -include/xercesc/framework/psvi/XSConstants.hpp -include/xercesc/framework/psvi/XSElementDeclaration.hpp -include/xercesc/framework/psvi/XSFacet.hpp -include/xercesc/framework/psvi/XSIDCDefinition.hpp -include/xercesc/framework/psvi/XSModel.hpp -include/xercesc/framework/psvi/XSModelGroup.hpp -include/xercesc/framework/psvi/XSModelGroupDefinition.hpp -include/xercesc/framework/psvi/XSMultiValueFacet.hpp -include/xercesc/framework/psvi/XSNamedMap.c -include/xercesc/framework/psvi/XSNamedMap.hpp -include/xercesc/framework/psvi/XSNamespaceItem.hpp -include/xercesc/framework/psvi/XSNotationDeclaration.hpp -include/xercesc/framework/psvi/XSObject.hpp -include/xercesc/framework/psvi/XSParticle.hpp -include/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp -include/xercesc/framework/psvi/XSTypeDefinition.hpp -include/xercesc/framework/psvi/XSValue.hpp -include/xercesc/framework/psvi/XSWildcard.hpp -include/xercesc/internal/BinFileOutputStream.hpp -include/xercesc/internal/BinMemOutputStream.hpp -include/xercesc/internal/CharTypeTables.hpp -include/xercesc/internal/DGXMLScanner.hpp -include/xercesc/internal/ElemStack.hpp -include/xercesc/internal/EndOfEntityException.hpp -include/xercesc/internal/IANAEncodings.hpp -include/xercesc/internal/IGXMLScanner.hpp -include/xercesc/internal/MemoryManagerArrayImpl.hpp -include/xercesc/internal/MemoryManagerImpl.hpp -include/xercesc/internal/ReaderMgr.hpp -include/xercesc/internal/SGXMLScanner.hpp -include/xercesc/internal/ValidationContextImpl.hpp -include/xercesc/internal/VecAttrListImpl.hpp -include/xercesc/internal/VecAttributesImpl.hpp -include/xercesc/internal/WFXMLScanner.hpp -include/xercesc/internal/XMLGrammarPoolImpl.hpp -include/xercesc/internal/XMLInternalErrorHandler.hpp -include/xercesc/internal/XMLReader.hpp -include/xercesc/internal/XMLScanner.hpp -include/xercesc/internal/XMLScannerResolver.hpp -include/xercesc/internal/XProtoType.hpp -include/xercesc/internal/XSAXMLScanner.hpp -include/xercesc/internal/XSObjectFactory.hpp -include/xercesc/internal/XSerializable.hpp -include/xercesc/internal/XSerializationException.hpp -include/xercesc/internal/XSerializeEngine.hpp -include/xercesc/internal/XTemplateSerializer.hpp -include/xercesc/parsers/AbstractDOMParser.hpp -include/xercesc/parsers/DOMBuilderImpl.hpp -include/xercesc/parsers/SAX2XMLReaderImpl.hpp -include/xercesc/parsers/SAX2XMLFilterImpl.hpp -include/xercesc/parsers/SAXParser.hpp -include/xercesc/parsers/XercesDOMParser.hpp -include/xercesc/sax/AttributeList.hpp -include/xercesc/sax/DTDHandler.hpp -include/xercesc/sax/DocumentHandler.hpp -include/xercesc/sax/EntityResolver.hpp -include/xercesc/sax/ErrorHandler.hpp -include/xercesc/sax/HandlerBase.hpp -include/xercesc/sax/InputSource.hpp -include/xercesc/sax/Locator.hpp -include/xercesc/sax/Parser.hpp -include/xercesc/sax/SAXException.hpp -include/xercesc/sax/SAXParseException.hpp -include/xercesc/sax2/Attributes.hpp -include/xercesc/sax2/ContentHandler.hpp -include/xercesc/sax2/DeclHandler.hpp -include/xercesc/sax2/DefaultHandler.hpp -include/xercesc/sax2/LexicalHandler.hpp -include/xercesc/sax2/SAX2XMLReader.hpp -include/xercesc/sax2/SAX2XMLFilter.hpp -include/xercesc/sax2/XMLReaderFactory.hpp -include/xercesc/util/ArrayIndexOutOfBoundsException.hpp -include/xercesc/util/AutoSense.hpp -include/xercesc/util/Base64.hpp -include/xercesc/util/BaseRefVectorOf.c -include/xercesc/util/BaseRefVectorOf.hpp -include/xercesc/util/BinFileInputStream.hpp -include/xercesc/util/BinInputStream.hpp -include/xercesc/util/BinMemInputStream.hpp -include/xercesc/util/BitOps.hpp -include/xercesc/util/BitSet.hpp -include/xercesc/util/Compilers/BorlandCDefs.hpp -include/xercesc/util/Compilers/CSetDefs.hpp -include/xercesc/util/Compilers/CodeWarriorDefs.hpp -include/xercesc/util/Compilers/DECCXXDefs.hpp -include/xercesc/util/Compilers/GCCDefs.hpp -include/xercesc/util/Compilers/HPCCDefs.hpp -include/xercesc/util/Compilers/IBMVAOS2Defs.hpp -include/xercesc/util/Compilers/IBMVAW32Defs.hpp -include/xercesc/util/Compilers/MIPSproDefs.hpp -include/xercesc/util/Compilers/MVSCPPDefs.hpp -include/xercesc/util/Compilers/OS400SetDefs.hpp -include/xercesc/util/Compilers/PTXCCDefs.hpp -include/xercesc/util/Compilers/QCCDefs.hpp -include/xercesc/util/Compilers/SCOCCDefs.hpp -include/xercesc/util/Compilers/SunCCDefs.hpp -include/xercesc/util/Compilers/SunKaiDefs.hpp -include/xercesc/util/Compilers/TandemCCDefs.hpp -include/xercesc/util/Compilers/VCPPDefs.hpp -include/xercesc/util/CountedPointer.c -include/xercesc/util/CountedPointer.hpp -include/xercesc/util/DefaultPanicHandler.hpp -include/xercesc/util/EmptyStackException.hpp -include/xercesc/util/EncodingValidator.hpp -include/xercesc/util/FlagJanitor.c -include/xercesc/util/FlagJanitor.hpp -include/xercesc/util/HashBase.hpp -include/xercesc/util/HashCMStateSet.hpp -include/xercesc/util/HashPtr.hpp -include/xercesc/util/HashXMLCh.hpp -include/xercesc/util/HexBin.hpp -include/xercesc/util/IOException.hpp -include/xercesc/util/IllegalArgumentException.hpp -include/xercesc/util/InvalidCastException.hpp -include/xercesc/util/Janitor.c -include/xercesc/util/Janitor.hpp -include/xercesc/util/KVStringPair.hpp -include/xercesc/util/KeyRefPair.c -include/xercesc/util/KeyRefPair.hpp -include/xercesc/util/KeyValuePair.c -include/xercesc/util/KeyValuePair.hpp -include/xercesc/util/LogicalPath.c -include/xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp -include/xercesc/util/MsgLoaders/InMemory/XercesMessages_en_US.hpp -include/xercesc/util/Mutexes.hpp -include/xercesc/util/NameIdPool.c -include/xercesc/util/NameIdPool.hpp -include/xercesc/util/NetAccessors/Socket/SocketNetAccessor.hpp -include/xercesc/util/NetAccessors/Socket/UnixHTTPURLInputStream.hpp -include/xercesc/util/NoSuchElementException.hpp -include/xercesc/util/NullPointerException.hpp -include/xercesc/util/NumberFormatException.hpp -include/xercesc/util/OutOfMemoryException.hpp -include/xercesc/util/PanicHandler.hpp -include/xercesc/util/ParseException.hpp -include/xercesc/util/PlatformUtils.hpp -include/xercesc/util/Platforms/FreeBSD/FreeBSDDefs.hpp -include/xercesc/util/QName.hpp -include/xercesc/util/RefArrayOf.c -include/xercesc/util/RefArrayOf.hpp -include/xercesc/util/RefArrayVectorOf.c -include/xercesc/util/RefArrayVectorOf.hpp -include/xercesc/util/RefHash2KeysTableOf.c -include/xercesc/util/RefHash2KeysTableOf.hpp -include/xercesc/util/RefHash3KeysIdPool.c -include/xercesc/util/RefHash3KeysIdPool.hpp -include/xercesc/util/RefHashTableOf.c -include/xercesc/util/RefHashTableOf.hpp -include/xercesc/util/RefStackOf.c -include/xercesc/util/RefStackOf.hpp -include/xercesc/util/RefVectorOf.c -include/xercesc/util/RefVectorOf.hpp -include/xercesc/util/RuntimeException.hpp -include/xercesc/util/SchemaDateTimeException.hpp -include/xercesc/util/SecurityManager.hpp -include/xercesc/util/StringPool.hpp -include/xercesc/util/SynchronizedStringPool.hpp -include/xercesc/util/TransENameMap.c -include/xercesc/util/TransENameMap.hpp -include/xercesc/util/TransService.hpp -%%TRANSICONV%%include/xercesc/util/Transcoders/IconvFBSD/IconvFBSDTransService.hpp -%%TRANSICU%%include/xercesc/util/Transcoders/ICU/ICUTransService.hpp -include/xercesc/util/TranscodingException.hpp -include/xercesc/util/UTFDataFormatException.hpp -include/xercesc/util/UnexpectedEOFException.hpp -include/xercesc/util/UnsupportedEncodingException.hpp -include/xercesc/util/ValueArrayOf.c -include/xercesc/util/ValueArrayOf.hpp -include/xercesc/util/ValueHashTableOf.c -include/xercesc/util/ValueHashTableOf.hpp -include/xercesc/util/ValueStackOf.c -include/xercesc/util/ValueStackOf.hpp -include/xercesc/util/ValueVectorOf.c -include/xercesc/util/ValueVectorOf.hpp -include/xercesc/util/XML256TableTranscoder.hpp -include/xercesc/util/XML88591Transcoder.hpp -include/xercesc/util/XMLASCIITranscoder.hpp -include/xercesc/util/XMLAbstractDoubleFloat.hpp -include/xercesc/util/XMLBigDecimal.hpp -include/xercesc/util/XMLBigInteger.hpp -include/xercesc/util/XMLChTranscoder.hpp -include/xercesc/util/XMLChar.hpp -include/xercesc/util/XMLDOMMsg.hpp -include/xercesc/util/XMLDateTime.hpp -include/xercesc/util/XMLDeleterFor.c -include/xercesc/util/XMLDeleterFor.hpp -include/xercesc/util/XMLDouble.hpp -include/xercesc/util/XMLEBCDICTranscoder.hpp -include/xercesc/util/XMLEntityResolver.hpp -include/xercesc/util/XMLEnumerator.hpp -include/xercesc/util/XMLExceptMsgs.hpp -include/xercesc/util/XMLException.hpp -include/xercesc/util/XMLFloat.hpp -include/xercesc/util/XMLHolder.c -include/xercesc/util/XMLHolder.hpp -include/xercesc/util/XMLIBM1047Transcoder.hpp -include/xercesc/util/XMLIBM1140Transcoder.hpp -include/xercesc/util/XMLInitializer.hpp -include/xercesc/util/XMLInteger.hpp -include/xercesc/util/XMLMsgLoader.hpp -include/xercesc/util/XMLNetAccessor.hpp -include/xercesc/util/XMLNumber.hpp -include/xercesc/util/XMLRegisterCleanup.hpp -include/xercesc/util/XMLResourceIdentifier.hpp -include/xercesc/util/XMLString.hpp -include/xercesc/util/XMLStringTokenizer.hpp -include/xercesc/util/XMLUCS4Transcoder.hpp -include/xercesc/util/XMLURL.hpp -include/xercesc/util/XMLUTF16Transcoder.hpp -include/xercesc/util/XMLUTF8Transcoder.hpp -include/xercesc/util/XMLUni.hpp -include/xercesc/util/XMLUniDefs.hpp -include/xercesc/util/XMLUri.hpp -include/xercesc/util/XMLWin1252Transcoder.hpp -include/xercesc/util/XMemory.hpp -include/xercesc/util/XercesDefs.hpp -include/xercesc/util/XercesVersion.hpp -include/xercesc/util/regx/ASCIIRangeFactory.hpp -include/xercesc/util/regx/BMPattern.hpp -include/xercesc/util/regx/BlockRangeFactory.hpp -include/xercesc/util/regx/CharToken.hpp -include/xercesc/util/regx/ClosureToken.hpp -include/xercesc/util/regx/ConcatToken.hpp -include/xercesc/util/regx/ConditionToken.hpp -include/xercesc/util/regx/Match.hpp -include/xercesc/util/regx/ModifierToken.hpp -include/xercesc/util/regx/Op.hpp -include/xercesc/util/regx/OpFactory.hpp -include/xercesc/util/regx/ParenToken.hpp -include/xercesc/util/regx/ParserForXMLSchema.hpp -include/xercesc/util/regx/RangeFactory.hpp -include/xercesc/util/regx/RangeToken.hpp -include/xercesc/util/regx/RangeTokenMap.hpp -include/xercesc/util/regx/RegularExpression.hpp -include/xercesc/util/regx/RegxDefs.hpp -include/xercesc/util/regx/RegxParser.hpp -include/xercesc/util/regx/RegxUtil.hpp -include/xercesc/util/regx/StringToken.hpp -include/xercesc/util/regx/Token.hpp -include/xercesc/util/regx/TokenFactory.hpp -include/xercesc/util/regx/TokenInc.hpp -include/xercesc/util/regx/UniCharTable.hpp -include/xercesc/util/regx/UnicodeRangeFactory.hpp -include/xercesc/util/regx/UnionToken.hpp -include/xercesc/util/regx/XMLRangeFactory.hpp -include/xercesc/util/regx/XMLUniCharacter.hpp -include/xercesc/validators/DTD/DTDAttDef.hpp -include/xercesc/validators/DTD/DTDAttDefList.hpp -include/xercesc/validators/DTD/DTDElementDecl.hpp -include/xercesc/validators/DTD/DTDEntityDecl.hpp -include/xercesc/validators/DTD/DTDGrammar.hpp -include/xercesc/validators/DTD/DTDScanner.hpp -include/xercesc/validators/DTD/DTDValidator.hpp -include/xercesc/validators/DTD/DocTypeHandler.hpp -include/xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp -include/xercesc/validators/common/AllContentModel.hpp -include/xercesc/validators/common/CMAny.hpp -include/xercesc/validators/common/CMBinaryOp.hpp -include/xercesc/validators/common/CMLeaf.hpp -include/xercesc/validators/common/CMNode.hpp -include/xercesc/validators/common/CMStateSet.hpp -include/xercesc/validators/common/CMUnaryOp.hpp -include/xercesc/validators/common/ContentLeafNameTypeVector.hpp -include/xercesc/validators/common/ContentSpecNode.hpp -include/xercesc/validators/common/DFAContentModel.hpp -include/xercesc/validators/common/Grammar.hpp -include/xercesc/validators/common/GrammarResolver.hpp -include/xercesc/validators/common/MixedContentModel.hpp -include/xercesc/validators/common/SimpleContentModel.hpp -include/xercesc/validators/datatype/AbstractNumericFacetValidator.hpp -include/xercesc/validators/datatype/AbstractNumericValidator.hpp -include/xercesc/validators/datatype/AbstractStringValidator.hpp -include/xercesc/validators/datatype/AnySimpleTypeDatatypeValidator.hpp -include/xercesc/validators/datatype/AnyURIDatatypeValidator.hpp -include/xercesc/validators/datatype/Base64BinaryDatatypeValidator.hpp -include/xercesc/validators/datatype/BooleanDatatypeValidator.hpp -include/xercesc/validators/datatype/DatatypeValidator.hpp -include/xercesc/validators/datatype/DatatypeValidatorFactory.hpp -include/xercesc/validators/datatype/DateDatatypeValidator.hpp -include/xercesc/validators/datatype/DateTimeDatatypeValidator.hpp -include/xercesc/validators/datatype/DateTimeValidator.hpp -include/xercesc/validators/datatype/DayDatatypeValidator.hpp -include/xercesc/validators/datatype/DecimalDatatypeValidator.hpp -include/xercesc/validators/datatype/DoubleDatatypeValidator.hpp -include/xercesc/validators/datatype/DurationDatatypeValidator.hpp -include/xercesc/validators/datatype/ENTITYDatatypeValidator.hpp -include/xercesc/validators/datatype/FloatDatatypeValidator.hpp -include/xercesc/validators/datatype/HexBinaryDatatypeValidator.hpp -include/xercesc/validators/datatype/IDDatatypeValidator.hpp -include/xercesc/validators/datatype/IDREFDatatypeValidator.hpp -include/xercesc/validators/datatype/InvalidDatatypeFacetException.hpp -include/xercesc/validators/datatype/InvalidDatatypeValueException.hpp -include/xercesc/validators/datatype/ListDatatypeValidator.hpp -include/xercesc/validators/datatype/MonthDatatypeValidator.hpp -include/xercesc/validators/datatype/MonthDayDatatypeValidator.hpp -include/xercesc/validators/datatype/NCNameDatatypeValidator.hpp -include/xercesc/validators/datatype/NOTATIONDatatypeValidator.hpp -include/xercesc/validators/datatype/NameDatatypeValidator.hpp -include/xercesc/validators/datatype/QNameDatatypeValidator.hpp -include/xercesc/validators/datatype/StringDatatypeValidator.hpp -include/xercesc/validators/datatype/TimeDatatypeValidator.hpp -include/xercesc/validators/datatype/UnionDatatypeValidator.hpp -include/xercesc/validators/datatype/XMLCanRepGroup.hpp -include/xercesc/validators/datatype/YearDatatypeValidator.hpp -include/xercesc/validators/datatype/YearMonthDatatypeValidator.hpp -include/xercesc/validators/schema/ComplexTypeInfo.hpp -include/xercesc/validators/schema/GeneralAttributeCheck.hpp -include/xercesc/validators/schema/NamespaceScope.hpp -include/xercesc/validators/schema/PSVIDefs.hpp -include/xercesc/validators/schema/SchemaAttDef.hpp -include/xercesc/validators/schema/SchemaAttDefList.hpp -include/xercesc/validators/schema/SchemaElementDecl.hpp -include/xercesc/validators/schema/SchemaGrammar.hpp -include/xercesc/validators/schema/SchemaInfo.hpp -include/xercesc/validators/schema/SchemaSymbols.hpp -include/xercesc/validators/schema/SchemaValidator.hpp -include/xercesc/validators/schema/SubstitutionGroupComparator.hpp -include/xercesc/validators/schema/TraverseSchema.hpp -include/xercesc/validators/schema/XMLSchemaDescriptionImpl.hpp -include/xercesc/validators/schema/XSDDOMParser.hpp -include/xercesc/validators/schema/XSDErrorReporter.hpp -include/xercesc/validators/schema/XSDLocator.hpp -include/xercesc/validators/schema/XUtil.hpp -include/xercesc/validators/schema/XercesAttGroupInfo.hpp -include/xercesc/validators/schema/XercesElementWildcard.hpp -include/xercesc/validators/schema/XercesGroupInfo.hpp -include/xercesc/validators/schema/identity/FieldActivator.hpp -include/xercesc/validators/schema/identity/FieldValueMap.hpp -include/xercesc/validators/schema/identity/IC_Field.hpp -include/xercesc/validators/schema/identity/IC_Key.hpp -include/xercesc/validators/schema/identity/IC_KeyRef.hpp -include/xercesc/validators/schema/identity/IC_Selector.hpp -include/xercesc/validators/schema/identity/IC_Unique.hpp -include/xercesc/validators/schema/identity/IdentityConstraint.hpp -include/xercesc/validators/schema/identity/IdentityConstraintHandler.hpp -include/xercesc/validators/schema/identity/ValueStore.hpp -include/xercesc/validators/schema/identity/ValueStoreCache.hpp -include/xercesc/validators/schema/identity/XPathException.hpp -include/xercesc/validators/schema/identity/XPathMatcher.hpp -include/xercesc/validators/schema/identity/XPathMatcherStack.hpp -include/xercesc/validators/schema/identity/XPathSymbols.hpp -include/xercesc/validators/schema/identity/XercesXPath.hpp -lib/%%XERCESC_LIB%% -lib/libxerces-c.so -lib/libxerces-c.so.%%XERCESC_LIB_VERSION%% -lib/%%XERCESC_DEPDOM_LIB%% -lib/libxerces-depdom.so -lib/libxerces-depdom.so.%%XERCESC_LIB_VERSION%% -@dirrm include/xercesc/validators/schema/identity -@dirrm include/xercesc/validators/schema -@dirrm include/xercesc/validators/datatype -@dirrm include/xercesc/validators/common -@dirrm include/xercesc/validators/DTD -@dirrm include/xercesc/validators -@dirrm include/xercesc/util/regx -%%TRANSICONV%%@dirrm include/xercesc/util/Transcoders/IconvFBSD -%%TRANSICU%%@dirrm include/xercesc/util/Transcoders/ICU -@dirrm include/xercesc/util/Transcoders -@dirrm include/xercesc/util/Platforms/FreeBSD -@dirrm include/xercesc/util/Platforms -@dirrm include/xercesc/util/NetAccessors/Socket -@dirrm include/xercesc/util/NetAccessors -@dirrm include/xercesc/util/MsgLoaders/InMemory -@dirrm include/xercesc/util/MsgLoaders -@dirrm include/xercesc/util/Compilers -@dirrm include/xercesc/util -@dirrm include/xercesc/sax2 -@dirrm include/xercesc/sax -@dirrm include/xercesc/parsers -@dirrm include/xercesc/internal -@dirrm include/xercesc/framework/psvi -@dirrm include/xercesc/framework -@dirrm include/xercesc/dom/impl -@dirrm include/xercesc/dom/deprecated -@dirrm include/xercesc/dom -@dirrm include/xercesc -%%PORTEXAMPLES%%bin/CreateDOMDocument -%%PORTEXAMPLES%%bin/DOMCount -%%PORTEXAMPLES%%bin/DOMPrint -%%PORTEXAMPLES%%bin/EnumVal -%%PORTEXAMPLES%%bin/MemParse -%%PORTEXAMPLES%%bin/PParse -%%PORTEXAMPLES%%bin/PSVIWriter -%%PORTEXAMPLES%%bin/Redirect -%%PORTEXAMPLES%%bin/SAX2Count -%%PORTEXAMPLES%%bin/SAX2Print -%%PORTEXAMPLES%%bin/SAXCount -%%PORTEXAMPLES%%bin/SAXPrint -%%PORTEXAMPLES%%bin/SCMPrint -%%PORTEXAMPLES%%bin/SEnumVal -%%PORTEXAMPLES%%bin/StdInParse -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CreateDOMDocument/CreateDOMDocument.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CreateDOMDocument/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CreateDOMDocument/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMCount/DOMCount.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMCount/DOMCount.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMCount/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMCount/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrint.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrintErrorHandler.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrintErrorHandler.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrintFilter.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrintFilter.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMTreeErrorReporter.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMTreeErrorReporter.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMPrint/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DOMPrint/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/EnumVal/EnumVal.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/EnumVal/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/EnumVal/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/MemParse/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/MemParse/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/MemParse/MemParse.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/MemParse/MemParse.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/MemParse/MemParseHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/MemParse/MemParseHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PParse/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PParse/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PParse/PParse.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PParse/PParse.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PParse/PParseHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PParse/PParseHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIUni.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIUni.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriter.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriter.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriterHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriterHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Redirect/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Redirect/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Redirect/Redirect.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Redirect/Redirect.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Redirect/RedirectHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Redirect/RedirectHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Count/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Count/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Count/SAX2Count.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Count/SAX2Count.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Count/SAX2CountHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Count/SAX2CountHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Print/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Print/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2Print.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2Print.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2PrintHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2PrintHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2FilterHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2FilterHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXCount/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXCount/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXCount/SAXCount.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXCount/SAXCount.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXCount/SAXCountHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXCount/SAXCountHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXPrint/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXPrint/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrint.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrint.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrintHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrintHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SCMPrint/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SCMPrint/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SCMPrint/SCMPrint.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SEnumVal/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SEnumVal/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SEnumVal/SEnumVal.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/StdInParse/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/StdInParse/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/StdInParse/StdInParse.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/StdInParse/StdInParse.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/StdInParse/StdInParseHandlers.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/StdInParse/StdInParseHandlers.hpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/personal-schema.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/personal.dtd -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/personal.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/personal.xsd -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/redirect.dtd -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/data -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/StdInParse -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SEnumVal -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SCMPrint -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SAXPrint -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SAXCount -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SAX2Print -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/SAX2Count -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/Redirect -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/PSVIWriter -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/PParse -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/MemParse -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/EnumVal -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/DOMPrint -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/DOMCount -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/CreateDOMDocument -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% diff --git a/textproc/xerces-c27/scripts/check-config-options b/textproc/xerces-c27/scripts/check-config-options deleted file mode 100644 index 4c2701570194..000000000000 --- a/textproc/xerces-c27/scripts/check-config-options +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -rc=0 - -if test -n "${WITH_NATIVE}"; then - rc=$(expr $rc + 1) -fi -if test -n "${WITH_ICU}"; then - rc=$(expr $rc + 1) -fi -if test -n "${WITH_ICONVFBSD}"; then - rc=$(expr $rc + 1) -fi - -if test ${rc} -gt 1; then - echo "ERROR: please re-run make config and" >&2 - echo "only select one of the three transcoders." >&2 - exit 254 -fi - -exit 0 - -# end |