summaryrefslogtreecommitdiff
path: root/textproc/xerces-c27
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/xerces-c27')
-rw-r--r--textproc/xerces-c27/Makefile191
-rw-r--r--textproc/xerces-c27/distinfo3
-rw-r--r--textproc/xerces-c27/files/patch-aa144
-rw-r--r--textproc/xerces-c27/files/patch-ab15
-rw-r--r--textproc/xerces-c27/files/patch-src-xercesc-Makefile.incl11
-rw-r--r--textproc/xerces-c27/pkg-descr9
-rw-r--r--textproc/xerces-c27/pkg-plist623
-rw-r--r--textproc/xerces-c27/scripts/check-config-options24
8 files changed, 0 insertions, 1020 deletions
diff --git a/textproc/xerces-c27/Makefile b/textproc/xerces-c27/Makefile
deleted file mode 100644
index 0c5147ff71f4..000000000000
--- a/textproc/xerces-c27/Makefile
+++ /dev/null
@@ -1,191 +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
-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 \
- SAMPLES "Copy sample binaries and sources." on \
- PORTDOCS "Copy documentation." 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
-
-# expect this to get broken some day
-NO_FILTER_SHLIBS= yes
-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(WITHOUT_DEBUG)
-CONFIGURE_ARGS+= -d
-STRIP=
-.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(WITHOUT_SAMPLES)
-PLIST_SUB+= NO_SAMPLES=""
-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
-.else
-PLIST_SUB+= NO_SAMPLES="@comment "
-.endif
-
-.if !defined(WITHOUT_PORTDOCS)
-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(WITHOUT_SAMPLES)
-.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(WITHOUT_DEBUG)
- @${STRIP_CMD} ${PREFIX}/lib/${XERCESC_LIB}
- @${STRIP_CMD} ${PREFIX}/lib/${XERCESC_DEPDOM_LIB}
-.endif
-.if !defined(WITHOUT_PORTDOCS)
- @${MKDIR} ${DOCSDIR}
- @${CP} -r ${WRKSRC}/doc/ ${DOCSDIR}
-.endif
-.if !defined(WITHOUT_SAMPLES)
- @${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 91d5fc3a015d..000000000000
--- a/textproc/xerces-c27/pkg-plist
+++ /dev/null
@@ -1,623 +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%%
-@exec ln -sf %%XERCESC_LIB%% %D/lib/libxerces-c.so
-@exec ln -sf %%XERCESC_LIB%% %D/lib/libxerces-c.so.%%XERCESC_LIB_VERSION%%
-@unexec if test ! -r %D/lib/libxerces-c.so; then rm -f %D/lib/libxerces-c.so; fi
-@unexec if test ! -r %D/lib/libxerces-c.so.%%XERCESC_LIB_VERSION%%; then rm -f %D/lib/libxerces-c.so.%%XERCESC_LIB_VERSION%%; fi
-lib/%%XERCESC_DEPDOM_LIB%%
-@exec ln -sf %%XERCESC_DEPDOM_LIB%% %D/lib/libxerces-depdom.so
-@exec ln -sf %%XERCESC_DEPDOM_LIB%% %D/lib/libxerces-depdom.so.%%XERCESC_LIB_VERSION%%
-@unexec if test ! -r %D/lib/libxerces-depdom.so; then rm -f %D/lib/libxerces-depdom.so; fi
-@unexec if test ! -r %D/lib/libxerces-depdom.so.%%XERCESC_LIB_VERSION%%; then rm -f %D/lib/libxerces-depdom.so.%%XERCESC_LIB_VERSION%%; fi
-@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
-@comment --- SAMPLES ---
-%%NO_SAMPLES%%bin/CreateDOMDocument
-%%NO_SAMPLES%%bin/DOMCount
-%%NO_SAMPLES%%bin/DOMPrint
-%%NO_SAMPLES%%bin/EnumVal
-%%NO_SAMPLES%%bin/MemParse
-%%NO_SAMPLES%%bin/PParse
-%%NO_SAMPLES%%bin/PSVIWriter
-%%NO_SAMPLES%%bin/Redirect
-%%NO_SAMPLES%%bin/SAX2Count
-%%NO_SAMPLES%%bin/SAX2Print
-%%NO_SAMPLES%%bin/SAXCount
-%%NO_SAMPLES%%bin/SAXPrint
-%%NO_SAMPLES%%bin/SCMPrint
-%%NO_SAMPLES%%bin/SEnumVal
-%%NO_SAMPLES%%bin/StdInParse
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/CreateDOMDocument/CreateDOMDocument.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/CreateDOMDocument/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/CreateDOMDocument/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMCount/DOMCount.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMCount/DOMCount.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMCount/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMCount/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrint.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrintErrorHandler.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrintErrorHandler.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrintFilter.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMPrintFilter.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMTreeErrorReporter.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMPrint/DOMTreeErrorReporter.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMPrint/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/DOMPrint/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/EnumVal/EnumVal.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/EnumVal/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/EnumVal/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/MemParse/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/MemParse/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/MemParse/MemParse.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/MemParse/MemParse.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/MemParse/MemParseHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/MemParse/MemParseHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParse.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParse.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParseHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PParse/PParseHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIUni.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIUni.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriter.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriter.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriterHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/PSVIWriter/PSVIWriterHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Redirect.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/Redirect.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/RedirectHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/Redirect/RedirectHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Count/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Count/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Count/SAX2Count.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Count/SAX2Count.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Count/SAX2CountHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Count/SAX2CountHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Print/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Print/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2Print.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2Print.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2PrintHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2PrintHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2FilterHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAX2Print/SAX2FilterHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXCount/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXCount/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXCount/SAXCount.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXCount/SAXCount.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXCount/SAXCountHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXCount/SAXCountHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrint.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrint.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrintHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SAXPrint/SAXPrintHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SCMPrint/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SCMPrint/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SCMPrint/SCMPrint.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SEnumVal/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SEnumVal/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/SEnumVal/SEnumVal.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/StdInParse/Makefile
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/StdInParse/Makefile.in
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/StdInParse/StdInParse.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/StdInParse/StdInParse.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/StdInParse/StdInParseHandlers.cpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/StdInParse/StdInParseHandlers.hpp
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/data/personal-schema.xml
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/data/personal.dtd
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/data/personal.xml
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/data/personal.xsd
-%%NO_SAMPLES%%%%EXAMPLESDIR%%/data/redirect.dtd
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/data
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/StdInParse
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SEnumVal
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SCMPrint
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAXPrint
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAXCount
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAX2Print
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/SAX2Count
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/Redirect
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/PSVIWriter
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/PParse
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/MemParse
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/EnumVal
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/DOMPrint
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/DOMCount
-%%NO_SAMPLES%%@dirrm %%EXAMPLESDIR%%/CreateDOMDocument
-%%NO_SAMPLES%%@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