You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by jb...@apache.org on 2005/05/25 16:36:03 UTC

svn commit: r178446 [3/6] - in /xerces/c/branches/jberry/3.0-unstable: ./ lib/ m4/ obj/ src/ tests/

Propchange: xerces/c/branches/jberry/3.0-unstable/configure
------------------------------------------------------------------------------
    svn:executable = *

Added: xerces/c/branches/jberry/3.0-unstable/configure.ac
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/configure.ac?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/configure.ac (added)
+++ xerces/c/branches/jberry/3.0-unstable/configure.ac Wed May 25 07:36:02 2005
@@ -0,0 +1,194 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+#
+
+#
+# Copyright 2005 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+#
+# $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+#
+
+AC_PREREQ(2.59)
+AC_INIT(xercesc3, 3.0)
+AC_CONFIG_SRCDIR([src/Makefile.am])
+AC_CONFIG_LIBOBJ_DIR([xercesc/compat])
+AC_CONFIG_AUX_DIR([config])
+AC_CONFIG_MACRO_DIR([m4])
+AC_CONFIG_HEADERS([config.h x_config.h])
+AC_CONFIG_FILES([Makefile lib/Makefile src/Makefile obj/Makefile tests/Makefile])
+
+# Check the target system
+AC_CANONICAL_HOST
+
+# Initialize automake
+AM_INIT_AUTOMAKE([foreign subdir-objects dist-bzip2 tar-ustar])
+AM_MAINTAINER_MODE
+
+# Checks for programs.
+AC_PROG_CXX
+AC_PROG_CC
+AC_PROG_LN_S
+AC_PROG_LIBTOOL
+AM_PROG_CC_C_O
+
+# Checks for libraries.
+# FIXME: Replace `main' with a function in `-lc':
+#AC_CHECK_LIB([c], [main])
+
+# Checks for header files.
+AC_HEADER_STDC
+AC_HEADER_TIME
+AC_CHECK_HEADERS([arpa/inet.h fcntl.h float.h inttypes.h langinfo.h limits.h locale.h \
+				memory.h netdb.h netinet/in.h nl_types.h stddef.h stdlib.h \
+				string.h strings.h \
+				sys/param.h sys/socket.h sys/time.h sys/timeb.h \
+				unistd.h wchar.h wctype.h \
+				CoreServices/CoreServices.h \
+				])
+
+# Checks for typedefs, structures, and compiler characteristics.
+AC_HEADER_STDBOOL
+AC_C_CONST
+AC_C_INLINE
+AC_C_VOLATILE
+AC_C_BIGENDIAN
+
+AC_TYPE_OFF_T
+AC_TYPE_SIZE_T
+XERCES_TYPE_16BIT_INT
+XERCES_TYPE_32BIT_INT
+AC_CHECK_SIZEOF(wchar_t)
+AC_CHECK_TYPE(size_t)
+AC_CHECK_TYPE(ssize_t)
+
+AC_CXX_HAVE_BOOL
+AC_CXX_HAVE_NAMESPACES
+AC_CXX_HAVE_STD_NAMESPACE
+AC_CXX_HAVE_STD_LIBS
+AC_CXX_HAVE_LSTRING
+
+# Checks for library functions.
+#AC_FUNC_ERROR_AT_LINE
+#AC_FUNC_MALLOC
+#AC_FUNC_MEMCMP
+#AC_FUNC_STRCOLL
+#AC_FUNC_STRTOD
+AC_CHECK_FUNCS([clock_gettime ftime getcwd gethostbyaddr gethostbyname gettimeofday localeconv \
+				mblen memmove memset nl_langinfo pathconf realpath setlocale socket \
+				strcasecmp strncasecmp stricmp strnicmp strchr strdup strncasecmp \
+				strrchr strstr strtol strtoul \
+				])
+				
+
+#
+# Orchestrate the replacement of missing functions
+#
+AC_REPLACE_FUNCS([stricmp strnicmp])
+
+
+
+
+# Things we've got to conditionally compile:
+#
+#	Transcoder
+#	MsgLoader
+#	NetAccessor
+#	File
+#	Mutex
+#	Timer
+#
+#	Specify location of libraries
+#	--with-curl=<location>
+#	--with-icu=<location>
+#	--with-libwww=<location>
+#
+#	Enable netaccessor selection:
+#	--enable-netaccessor-curl
+#	--enable-netaccessor-libwww
+#	--enable-netaccessor-socket
+#	--enable-netaccessor-cfurlaccessor
+#	--enable-netaccessor-winsock
+#
+#	Enable msgloader selection:
+#	--enable-msgloader-memory
+#	--enable-msgloader-icu
+#	--enable-msgloader-msgcatalog
+#	--enable-msgloader-msgfile
+#	--enable-msgloader-win32
+#
+
+######################################################
+# Look for availability of available packages
+######################################################
+
+XERCES_CURL_PREFIX
+XERCES_LIBWWW_PREFIX
+
+XERCES_NETACCESSOR_SELECTION
+XERCES_TRANSCODER_SELECTION
+XERCES_MSGLOADER_SELECTION
+
+
+
+######################################################
+# Define some namespace-protected macros for use in the publicly visible
+# XercesConfig.h file.
+######################################################
+case $host in
+*-*-msdos* | *-*-mingw32* | *-*-cygwin* | *-*-windows* )
+	platform_export="__declspec(dllexport)"
+	platform_import="__declspec(dllimport)"
+	;; 
+* )
+	platform_export=""
+	platform_import=""
+	;; 
+esac
+AC_DEFINE_UNQUOTED([XERCES_PLATFORM_EXPORT], [$platform_export], [Define as the platform's export attribute])
+AC_DEFINE_UNQUOTED([XERCES_PLATFORM_IMPORT], [$platform_import], [Define as the platform's import attribute])
+
+AC_DEFINE([XERCES_AUTOCONF], 1, [Define to true if autoconf is used in this configuration])
+
+AS_IF([test ! $ac_cv_cxx_have_bool],
+	AC_DEFINE([XERCES_NO_NATIVE_BOOL], 1, [Define if there is no native bool support in this environment]))
+
+AS_IF([test $ac_cv_cxx_have_lstring],
+	AC_DEFINE([XERCES_LSTRSUPPORT], 1, [Define if there is support for L"widestring"]))
+
+AC_DEFINE_UNQUOTED([XERCES_16BIT_INT], $xerces_cv_type_16bit_int, [An appropriate 16 bit integer type])
+AC_DEFINE_UNQUOTED([XERCES_32BIT_INT], $xerces_cv_type_32bit_int, [An appropriate 32 bit integer type])
+
+AS_IF([test $ac_cv_sizeof_wchar_t -eq 2],
+	AC_DEFINE([XERCES_XMLCH], [wchar_t], [Define to the 16 bit type used to represent Xerces UTF-16 characters]),
+	AC_DEFINE_UNQUOTED([XERCES_XMLCH], [unsigned $xerces_cv_type_16bit_int], [Define to the 16 bit type used to represent Xerces UTF-16 characters]))
+	
+AS_IF([test x$ac_cv_type_size_t = xyes],
+	AC_DEFINE([XERCES_SIZE_T], [size_t], [Define as the appropriate size_t type]),
+	AC_DEFINE([XERCES_SIZE_T], [long], [Define as the appropriate size_t type]))
+	
+AS_IF([test x$ac_cv_type_ssize_t = xyes],
+	AC_DEFINE([XERCES_SSIZE_T], [ssize_t], [Define as the appropriate ssize_t type]),
+	AC_DEFINE([XERCES_SSIZE_T], [unsigned long], [Define as the appropriate ssize_t type]))
+	
+AS_IF([test x$ac_cv_cxx_have_std_namespace = xyes],
+	AC_DEFINE([XERCES_STD_NAMESPACE], 1, [Define if the std namespace is supported]))
+	
+AS_IF([test x$ac_cv_cxx_have_std_libs = xyes],
+	AC_DEFINE([XERCES_NEW_IOSTREAMS], 1, [Define if the isstream library can be included as <iostream>]))
+
+
+AC_OUTPUT

Added: xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am (added)
+++ xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am Wed May 25 07:36:02 2005
@@ -0,0 +1,33 @@
+#
+# Copyright 2005 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+#
+# $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+#
+
+
+#
+# Specify the convenience libraries for various xerces components
+# These are used only during the build process and are not themselves installed
+#
+noinst_LTLIBRARIES =				libcompat.la
+
+#
+# Build convenience libraries for the various xerces components
+#
+#noinst_libcompat_la_HEADERS =		
+libcompat_la_SOURCES =				xerces_compat.c
+libcompat_la_LIBADD =				${LTLIBOBJS}

Added: xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in (added)
+++ xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in Wed May 25 07:36:02 2005
@@ -0,0 +1,493 @@
+# Makefile.in generated by automake 1.9.5 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005  Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+#
+# Copyright 2005 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+#
+# $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+#
+
+SOURCES = $(libcompat_la_SOURCES)
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ..
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+subdir = lib
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in stricmp.c \
+	strnicmp.c
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/m4/cxx_have_bool.m4 \
+	$(top_srcdir)/m4/cxx_have_lstring.m4 \
+	$(top_srcdir)/m4/cxx_have_namespaces.m4 \
+	$(top_srcdir)/m4/cxx_have_std_libs.m4 \
+	$(top_srcdir)/m4/cxx_have_std_namespace.m4 \
+	$(top_srcdir)/m4/xerces_curl_prefix.m4 \
+	$(top_srcdir)/m4/xerces_icu_prefix.m4 \
+	$(top_srcdir)/m4/xerces_libwww_prefix.m4 \
+	$(top_srcdir)/m4/xerces_link_darwin_framework.m4 \
+	$(top_srcdir)/m4/xerces_msgloader_selection.m4 \
+	$(top_srcdir)/m4/xerces_netaccessor_selection.m4 \
+	$(top_srcdir)/m4/xerces_transcoder_selection.m4 \
+	$(top_srcdir)/m4/xerces_type_16bit_int.m4 \
+	$(top_srcdir)/m4/xerces_type_32bit_int.m4 \
+	$(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+	$(ACLOCAL_M4)
+mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/x_config.h
+CONFIG_CLEAN_FILES =
+LTLIBRARIES = $(noinst_LTLIBRARIES)
+am__DEPENDENCIES_1 = @LTLIBOBJS@
+libcompat_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+am_libcompat_la_OBJECTS = xerces_compat.lo
+libcompat_la_OBJECTS = $(am_libcompat_la_OBJECTS)
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -I$(top_builddir)
+depcomp = $(SHELL) $(top_srcdir)/config/depcomp
+am__depfiles_maybe = depfiles
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
+	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
+	$(AM_CFLAGS) $(CFLAGS)
+CCLD = $(CC)
+LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+	$(AM_LDFLAGS) $(LDFLAGS) -o $@
+SOURCES = $(libcompat_la_SOURCES)
+DIST_SOURCES = $(libcompat_la_SOURCES)
+ETAGS = etags
+CTAGS = ctags
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ACLOCAL = @ACLOCAL@
+AMDEP_FALSE = @AMDEP_FALSE@
+AMDEP_TRUE = @AMDEP_TRUE@
+AMTAR = @AMTAR@
+AR = @AR@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CURL_PREFIX = @CURL_PREFIX@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+ECHO = @ECHO@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+F77 = @F77@
+FFLAGS = @FFLAGS@
+ICU_PREFIX = @ICU_PREFIX@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LDFLAGS = @LDFLAGS@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LTLIBOBJS = @LTLIBOBJS@
+MAINT = @MAINT@
+MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+MAKEINFO = @MAKEINFO@
+OBJEXT = @OBJEXT@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+RANLIB = @RANLIB@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+STRIP = @STRIP@
+VERSION = @VERSION@
+XERCES_USE_MSGLOADER_INMEMORY_FALSE = @XERCES_USE_MSGLOADER_INMEMORY_FALSE@
+XERCES_USE_MSGLOADER_INMEMORY_TRUE = @XERCES_USE_MSGLOADER_INMEMORY_TRUE@
+XERCES_USE_NETACCESSOR_CFURL_FALSE = @XERCES_USE_NETACCESSOR_CFURL_FALSE@
+XERCES_USE_NETACCESSOR_CFURL_TRUE = @XERCES_USE_NETACCESSOR_CFURL_TRUE@
+XERCES_USE_NETACCESSOR_CURL_FALSE = @XERCES_USE_NETACCESSOR_CURL_FALSE@
+XERCES_USE_NETACCESSOR_CURL_TRUE = @XERCES_USE_NETACCESSOR_CURL_TRUE@
+XERCES_USE_NETACCESSOR_LIBWWW_FALSE = @XERCES_USE_NETACCESSOR_LIBWWW_FALSE@
+XERCES_USE_NETACCESSOR_LIBWWW_TRUE = @XERCES_USE_NETACCESSOR_LIBWWW_TRUE@
+XERCES_USE_NETACCESSOR_SOCKET_FALSE = @XERCES_USE_NETACCESSOR_SOCKET_FALSE@
+XERCES_USE_NETACCESSOR_SOCKET_TRUE = @XERCES_USE_NETACCESSOR_SOCKET_TRUE@
+XERCES_USE_NETACCESSOR_WINSOCK_FALSE = @XERCES_USE_NETACCESSOR_WINSOCK_FALSE@
+XERCES_USE_NETACCESSOR_WINSOCK_TRUE = @XERCES_USE_NETACCESSOR_WINSOCK_TRUE@
+XERCES_USE_TRANSCODER_ICU_FALSE = @XERCES_USE_TRANSCODER_ICU_FALSE@
+XERCES_USE_TRANSCODER_ICU_TRUE = @XERCES_USE_TRANSCODER_ICU_TRUE@
+XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER_FALSE = @XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER_FALSE@
+XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER_TRUE = @XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER_TRUE@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_F77 = @ac_ct_F77@
+ac_ct_RANLIB = @ac_ct_RANLIB@
+ac_ct_STRIP = @ac_ct_STRIP@
+am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
+am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+datadir = @datadir@
+exec_prefix = @exec_prefix@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+
+#
+# Specify the convenience libraries for various xerces components
+# These are used only during the build process and are not themselves installed
+#
+noinst_LTLIBRARIES = libcompat.la
+
+#
+# Build convenience libraries for the various xerces components
+#
+#noinst_libcompat_la_HEADERS =		
+libcompat_la_SOURCES = xerces_compat.c
+libcompat_la_LIBADD = ${LTLIBOBJS}
+all: all-am
+
+.SUFFIXES:
+.SUFFIXES: .c .lo .o .obj
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
+	@for dep in $?; do \
+	  case '$(am__configure_deps)' in \
+	    *$$dep*) \
+	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+		&& exit 0; \
+	      exit 1;; \
+	  esac; \
+	done; \
+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  lib/Makefile'; \
+	cd $(top_srcdir) && \
+	  $(AUTOMAKE) --foreign  lib/Makefile
+.PRECIOUS: Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+	@case '$?' in \
+	  *config.status*) \
+	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+	  *) \
+	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
+	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+	esac;
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+clean-noinstLTLIBRARIES:
+	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
+	@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
+	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
+	  test "$$dir" != "$$p" || dir=.; \
+	  echo "rm -f \"$${dir}/so_locations\""; \
+	  rm -f "$${dir}/so_locations"; \
+	done
+libcompat.la: $(libcompat_la_OBJECTS) $(libcompat_la_DEPENDENCIES) 
+	$(LINK)  $(libcompat_la_LDFLAGS) $(libcompat_la_OBJECTS) $(libcompat_la_LIBADD) $(LIBS)
+
+mostlyclean-compile:
+	-rm -f *.$(OBJEXT)
+
+distclean-compile:
+	-rm -f *.tab.c
+
+@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/stricmp.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/strnicmp.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xerces_compat.Plo@am__quote@
+
+.c.o:
+@am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`; \
+@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ $<; \
+@am__fastdepCC_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Po"; else rm -f "$$depbase.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ $<
+
+.c.obj:
+@am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`; \
+@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
+@am__fastdepCC_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Po"; else rm -f "$$depbase.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+
+.c.lo:
+@am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`; \
+@am__fastdepCC_TRUE@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ $<; \
+@am__fastdepCC_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Plo"; else rm -f "$$depbase.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
+
+mostlyclean-libtool:
+	-rm -f *.lo
+
+clean-libtool:
+	-rm -rf .libs _libs
+
+distclean-libtool:
+	-rm -f libtool
+uninstall-info-am:
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '    { files[$$0] = 1; } \
+	       END { for (i in files) print i; }'`; \
+	mkid -fID $$unique
+tags: TAGS
+
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	tags=; \
+	here=`pwd`; \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '    { files[$$0] = 1; } \
+	       END { for (i in files) print i; }'`; \
+	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
+	  test -n "$$unique" || unique=$$empty_fix; \
+	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+	    $$tags $$unique; \
+	fi
+ctags: CTAGS
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	tags=; \
+	here=`pwd`; \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '    { files[$$0] = 1; } \
+	       END { for (i in files) print i; }'`; \
+	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+	     $$tags $$unique
+
+GTAGS:
+	here=`$(am__cd) $(top_builddir) && pwd` \
+	  && cd $(top_srcdir) \
+	  && gtags -i $(GTAGS_ARGS) $$here
+
+distclean-tags:
+	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+
+distdir: $(DISTFILES)
+	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+	list='$(DISTFILES)'; for file in $$list; do \
+	  case $$file in \
+	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+	  esac; \
+	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+	    dir="/$$dir"; \
+	    $(mkdir_p) "$(distdir)$$dir"; \
+	  else \
+	    dir=''; \
+	  fi; \
+	  if test -d $$d/$$file; then \
+	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+	    fi; \
+	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+	  else \
+	    test -f $(distdir)/$$file \
+	    || cp -p $$d/$$file $(distdir)/$$file \
+	    || exit 1; \
+	  fi; \
+	done
+check-am: all-am
+check: check-am
+all-am: Makefile $(LTLIBRARIES)
+installdirs:
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+
+maintainer-clean-generic:
+	@echo "This command is intended for maintainers to use"
+	@echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
+	mostlyclean-am
+
+distclean: distclean-am
+	-rm -rf $(DEPDIR) ./$(DEPDIR)
+	-rm -f Makefile
+distclean-am: clean-am distclean-compile distclean-generic \
+	distclean-libtool distclean-tags
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+info: info-am
+
+info-am:
+
+install-data-am:
+
+install-exec-am:
+
+install-info: install-info-am
+
+install-man:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+	-rm -rf $(DEPDIR) ./$(DEPDIR)
+	-rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
+	mostlyclean-libtool
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-info-am
+
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+	clean-libtool clean-noinstLTLIBRARIES ctags distclean \
+	distclean-compile distclean-generic distclean-libtool \
+	distclean-tags distdir dvi dvi-am html html-am info info-am \
+	install install-am install-data install-data-am install-exec \
+	install-exec-am install-info install-info-am install-man \
+	install-strip installcheck installcheck-am installdirs \
+	maintainer-clean maintainer-clean-generic mostlyclean \
+	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
+	pdf pdf-am ps ps-am tags uninstall uninstall-am \
+	uninstall-info-am
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:

Added: xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c (added)
+++ xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c Wed May 25 07:36:02 2005
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ * $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+ */
+
+#include "stricmp.h"
+#include "config.h"
+
+#if defined(HAVE_STRING)
+#include <string.h>
+#endif
+
+int stricmp(const char* const str1, const char* const  str2) 
+{
+#if defined(HAVE_STRCASECMP)
+	return strcasecmp(str1, str2);
+#else
+	#error Need implementation of stricmp compatibility function
+#endif
+}

Added: xerces/c/branches/jberry/3.0-unstable/lib/stricmp.h
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/stricmp.h?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/stricmp.h (added)
+++ xerces/c/branches/jberry/3.0-unstable/lib/stricmp.h Wed May 25 07:36:02 2005
@@ -0,0 +1,34 @@
+#ifndef STRICMP_H
+#define STRICMP_H
+
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ * $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern int stricmp(const char* const str1, const char* const  str2);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif

Added: xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c (added)
+++ xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c Wed May 25 07:36:02 2005
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ * $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+ */
+
+#include "strnicmp.h"
+#include "config.h"
+
+#if defined(HAVE_STRING)
+#include <string.h>
+#endif
+
+int strnicmp(const char* const str1, const char* const  str2, const unsigned int count)
+{
+#if defined(HAVE_STRNCASECMP)
+	return (count == 0) ? 0 : strncasecmp( str1, str2, count);
+#else
+	#error Need implementation of strnicmp compatibility function
+#endif
+}

Added: xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.h
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.h?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.h (added)
+++ xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.h Wed May 25 07:36:02 2005
@@ -0,0 +1,34 @@
+#ifndef STRNICMP_H
+#define STRNICMP_H
+
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ * $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern int strnicmp(const char* const str1, const char* const  str2, const unsigned int count);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif

Added: xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c (added)
+++ xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c Wed May 25 07:36:02 2005
@@ -0,0 +1,29 @@
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+ * $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+ */
+
+
+/* This is just a dummy function to make ensure that the compat
+   lib always has as least _something_ in it, since it's not portable
+   to make a convenience library with nothing in it.
+*/
+void
+xerces_compat_dummy()
+{
+}
\ No newline at end of file

Added: xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_bool.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_bool.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_bool.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_bool.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,30 @@
+dnl @synopsis AC_CXX_HAVE_BOOL
+dnl
+dnl If the compiler recognizes bool as a separate built-in type, define
+dnl HAVE_BOOL. Note that a typedef is not a separate type since you
+dnl cannot overload a function such that it accepts either the basic
+dnl type or the typedef.
+dnl
+dnl @category Cxx
+dnl @author Todd Veldhuizen
+dnl @author Luc Maisonobe <lu...@spaceroots.org>
+dnl @version 2004-02-04
+dnl @license AllPermissive
+
+AC_DEFUN([AC_CXX_HAVE_BOOL],
+[AC_CACHE_CHECK(whether the compiler recognizes bool as a built-in type,
+ac_cv_cxx_have_bool,
+[AC_LANG_SAVE
+ AC_LANG_CPLUSPLUS
+ AC_TRY_COMPILE([
+int f(int  x){return 1;}
+int f(char x){return 1;}
+int f(bool x){return 1;}
+],[bool b = true; return f(b);],
+ ac_cv_cxx_have_bool=yes, ac_cv_cxx_have_bool=no)
+ AC_LANG_RESTORE
+])
+if test "$ac_cv_cxx_have_bool" = yes; then
+  AC_DEFINE(HAVE_BOOL,,[define if bool is a built-in type])
+fi
+])

Added: xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_lstring.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_lstring.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_lstring.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_lstring.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,25 @@
+dnl @synopsis AC_CXX_HAVE_LSTRING
+dnl
+dnl If the compiler can prevent names clashes using namespaces, define
+dnl HAVE_LSTRING.
+dnl
+dnl @category Cxx
+dnl @author James Berry
+dnl @version 2005-02-21
+dnl @license AllPermissive
+
+AC_DEFUN([AC_CXX_HAVE_LSTRING],
+[AC_CACHE_CHECK([whether the compiler implements L"widestring"],
+ac_cv_cxx_have_lstring,
+[AC_LANG_SAVE
+ AC_LANG_CPLUSPLUS
+ AC_COMPILE_IFELSE(
+	AC_LANG_SOURCE(
+		[[const wchar_t* s=L"wide string";]]),
+ 	ac_cv_cxx_have_lstring=yes, ac_cv_cxx_have_lstring=no)
+ AC_LANG_RESTORE
+])
+if test "$ac_cv_cxx_have_lstring" = yes; then
+  AC_DEFINE(HAVE_LSTRING,,[define if the compiler implements L"widestring"])
+fi
+])

Added: xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_namespaces.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_namespaces.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_namespaces.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_namespaces.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,25 @@
+dnl @synopsis AC_CXX_HAVE_NAMESPACES
+dnl
+dnl If the compiler can prevent names clashes using namespaces, define
+dnl HAVE_NAMESPACES.
+dnl
+dnl @category Cxx
+dnl @author Todd Veldhuizen
+dnl @author Luc Maisonobe <lu...@spaceroots.org>
+dnl @version 2004-02-04
+dnl @license AllPermissive
+
+AC_DEFUN([AC_CXX_HAVE_NAMESPACES],
+[AC_CACHE_CHECK(whether the compiler implements namespaces,
+ac_cv_cxx_have_namespaces,
+[AC_LANG_SAVE
+ AC_LANG_CPLUSPLUS
+ AC_TRY_COMPILE([namespace Outer { namespace Inner { int i = 0; }}],
+                [using namespace Outer::Inner; return i;],
+ ac_cv_cxx_have_namespaces=yes, ac_cv_cxx_have_namespaces=no)
+ AC_LANG_RESTORE
+])
+if test "$ac_cv_cxx_have_namespaces" = yes; then
+  AC_DEFINE(HAVE_NAMESPACES,,[define if the compiler implements namespaces])
+fi
+])

Added: xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_std_libs.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_std_libs.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_std_libs.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_std_libs.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,32 @@
+dnl @synopsis AC_CXX_HAVE_STD_LIBS
+dnl
+dnl If the compiler supports ISO C++ standard library (i.e., can
+dnl include the files iostream, map, iomanip and cmath}), define
+dnl HAVE_STD_LIBS.
+dnl
+dnl @category Cxx
+dnl @author Todd Veldhuizen
+dnl @author Luc Maisonobe <lu...@spaceroots.org>
+dnl @version 2004-02-04
+dnl @license AllPermissive
+
+AC_DEFUN([AC_CXX_HAVE_STD_LIBS],
+[AC_CACHE_CHECK(whether the compiler supports ISO C++ standard library,
+ac_cv_cxx_have_std_libs,
+[AC_REQUIRE([AC_CXX_HAVE_NAMESPACES])
+ AC_LANG_SAVE
+ AC_LANG_CPLUSPLUS
+ AC_TRY_COMPILE([#include <iostream>
+#include <map>
+#include <iomanip>
+#include <cmath>
+#ifdef HAVE_NAMESPACES
+using namespace std;
+#endif],[return 0;],
+ ac_cv_cxx_have_std_libs=yes, ac_cv_cxx_have_std_libs=no)
+ AC_LANG_RESTORE
+])
+if test "$ac_cv_cxx_have_std_libs" = yes; then
+  AC_DEFINE(HAVE_STD_LIBS,,[define if the compiler supports ISO C++ standard library])
+fi
+])

Added: xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_std_namespace.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_std_namespace.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_std_namespace.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/cxx_have_std_namespace.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,26 @@
+dnl @synopsis AC_CXX_HAVE_STD_NAMESPACE
+dnl
+dnl If the compiler supports the std namespace, define
+dnl HAVE_STD_NAMESPACE.
+dnl
+dnl @category Cxx
+dnl @author Todd Veldhuizen
+dnl @author Luc Maisonobe <lu...@spaceroots.org>
+dnl @version 2004-02-04
+dnl @license AllPermissive
+
+AC_DEFUN([AC_CXX_HAVE_STD_NAMESPACE],
+[AC_CACHE_CHECK(whether the compiler supports the std namespace,
+ac_cv_cxx_have_std_namespace,
+[AC_LANG_SAVE
+ AC_LANG_CPLUSPLUS
+ AC_TRY_COMPILE([#include <iostream>
+	std::istream& is = std::cin;
+	],[return 0;],
+ ac_cv_cxx_have_std_namespace=yes, ac_cv_cxx_have_std_namespace=no)
+ AC_LANG_RESTORE
+])
+if test "$ac_cv_cxx_have_std_namespace" = yes; then
+  AC_DEFINE(HAVE_STD_NAMESPACE,,[define if the compiler supports the std namespace])
+fi
+])

Added: xerces/c/branches/jberry/3.0-unstable/m4/xerces_curl_prefix.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_curl_prefix.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_curl_prefix.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_curl_prefix.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,37 @@
+dnl @synopsis XERCES_CURL_PREFIX
+dnl
+dnl Determines the prefix for libcurl
+dnl
+dnl @category C
+dnl @author James Berry
+dnl @version 2005-05-23
+dnl @license AllPermissive
+dnl
+dnl $Id$
+
+AC_DEFUN([XERCES_CURL_PREFIX],
+	[
+	AC_ARG_WITH([curl],
+		[  --with-curl[[=DIR]]           Specify location of libcurl],
+		[with_curl=m4_if($with_curl, [yes], [], $with_curl)],
+		[with_curl=])
+
+	# Determine if curl is available
+	AC_CACHE_CHECK([for libcurl], [xerces_cv_curl_prefix],
+	[	
+		xerces_cv_curl_prefix=
+		if test x"$with_curl" != x"no"; then
+			search_list="$with_curl /usr/local /usr"
+			for i in $search_list; do
+				if test -r "$i/include/curl/easy.h"; then
+					xerces_cv_curl_prefix=$i
+					break
+				fi
+			done
+		fi
+	])
+
+	AC_SUBST([CURL_PREFIX], [$xerces_cv_curl_prefix])
+	]
+)
+

Added: xerces/c/branches/jberry/3.0-unstable/m4/xerces_icu_prefix.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_icu_prefix.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_icu_prefix.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_icu_prefix.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,37 @@
+dnl @synopsis XERCES_ICU_PREFIX
+dnl
+dnl Determines the prefix for icu
+dnl
+dnl @category C
+dnl @author James Berry
+dnl @version 2005-05-23
+dnl @license AllPermissive
+dnl
+dnl $Id$
+
+AC_DEFUN([XERCES_ICU_PREFIX],
+	[
+	AC_ARG_WITH([icu],
+		[  --with-icu[[=DIR]]           Specify location of icu],
+		[with_icu=m4_if($with_icu, [yes], [], $with_icu)],
+		[with_icu=])
+
+	# Determine if icu is available
+	AC_CACHE_CHECK([for icu], [xerces_cv_icu_prefix],
+	[	
+		xerces_cv_icu_prefix=
+		if test x"$with_icu" != x"no"; then
+			search_list="$with_icu /usr/local /usr"
+			for i in $search_list; do
+				if test -r "$i/include/unicode/ucnv.h"; then
+					xerces_cv_icu_prefix=$i
+					break
+				fi
+			done
+		fi
+	])
+	
+	AC_SUBST([ICU_PREFIX], [$xerces_cv_icu_prefix])
+	]
+)
+

Added: xerces/c/branches/jberry/3.0-unstable/m4/xerces_libwww_prefix.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_libwww_prefix.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_libwww_prefix.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_libwww_prefix.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,34 @@
+dnl @synopsis XERCES_LIBWWW_PREFIX
+dnl
+dnl Determines the prefix for libwww
+dnl
+dnl @category C
+dnl @author James Berry
+dnl @version 2005-05-23
+dnl @license AllPermissive
+dnl
+dnl $Id$
+
+AC_DEFUN([XERCES_LIBWWW_PREFIX],
+	[
+	AC_ARG_WITH([libwww],
+		[  --with-libwww[[=DIR]]         Include libwww support],
+		[with_libwww=m4_if($with_libwww, [yes], [], $with_libwww)],
+		[with_libwww=])
+		
+	# Determine if libwww is available
+	AC_CACHE_CHECK([for libwww], [xerces_cv_libwww_prefix], [	
+		xerces_cv_libwww_prefix=
+		if test x"$with_libwww" != x"no"; then
+			search_list="$with_libwww /usr/local /usr"
+			for i in $search_list; do
+				if test -r "$i/include/w3c-libwww/HTTP.h"; then
+					xerces_cv_libwww_prefix=$i
+					break
+				fi
+			done
+		fi
+	])
+	]
+)
+

Added: xerces/c/branches/jberry/3.0-unstable/m4/xerces_link_darwin_framework.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_link_darwin_framework.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_link_darwin_framework.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_link_darwin_framework.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,27 @@
+dnl @synopsis XERCES_LINK_DARWIN_FRAMEWORK
+dnl
+dnl Adds the specified framework to LIBS if it's not already there.
+dnl
+dnl @category C
+dnl @author James Berry
+dnl @version 2005-02-20
+dnl @license AllPermissive
+dnl
+dnl $Id$
+
+AC_DEFUN([XERCES_LINK_DARWIN_FRAMEWORK], [
+	case $host_os in
+	darwin*)
+		test -z "${xerces_darwin_frameworks}" && xerces_darwin_frameworks="-"
+		case ${xerces_darwin_frameworks} in
+		*-$1-*)
+			;;
+		*)
+			xerces_darwin_frameworks="-$1${xerces_darwin_frameworks}"
+			LIBS="-Wl,-framework -Wl,$1 $LIBS"
+			;;
+		esac
+		;;
+	esac
+])
+

Added: xerces/c/branches/jberry/3.0-unstable/m4/xerces_msgloader_selection.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_msgloader_selection.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_msgloader_selection.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_msgloader_selection.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,81 @@
+dnl @synopsis XERCES_MSGLOADER_SELECTION
+dnl
+dnl Determines the which msgloader to use
+dnl
+dnl @category C
+dnl @author James Berry
+dnl @version 2005-05-23
+dnl @license AllPermissive
+dnl
+dnl $Id$
+
+AC_DEFUN([XERCES_MSGLOADER_SELECTION],
+	[
+
+	######################################################
+	# Test for availability of each msgloader on this host.
+	# For each msgloader that's available, and hasn't been disabled, add it to our list.
+	# If the msgloader has been explicitly "enable"d, then vote for it strongly,
+	# in upper case.
+	######################################################
+	
+	ml_list=
+	
+	# Check for inmemory msgloader
+	list_add=
+	AS_IF([true], [
+		AC_ARG_ENABLE([msgloader-inmemory],
+			AS_HELP_STRING([--enable-msgloader-inmemory],
+				[Enable InMemory MsgLoader support]),
+			[AS_IF([test x"$enableval" = xyes],
+				[list_add=INMEMORY])],
+			[list_add=inmemory])
+	])
+	AS_IF([test x"$list_add" != x],
+		[ml_list="$ml_list $list_add"; AC_MSG_RESULT(yes)],
+		[AC_MSG_RESULT(no)]
+	)
+	
+	# TODO: Add test for additional msgloaders
+	
+	
+	######################################################
+	# Determine which msgloader to use.
+	#
+	# We do this in two passes. MsgLoaders that have been enabled with "yes",
+	# and which start out in upper case, get the top priority on the first pass.
+	# On the second pass, we consider those which are simply available, but
+	# which were not "disable"d (these won't even be in our list).
+	######################################################
+	msgloader=
+	AC_MSG_CHECKING([for which MsgLoader to use (choices:$ml_list)])
+	for i in 1 2; do
+		# Swap upper/lower case in the ml_list
+		ml_list=`echo $ml_list | tr 'A-Za-z' 'a-zA-Z'`
+		
+		# Check for each msgloader, in implicit rank order
+		case $ml_list in
+		*inmemory*)
+			AC_DEFINE([XERCES_USE_MSGLOADER_INMEMORY], 1, [Define to use the InMemory MsgLoader])
+			msgloader=inmemory
+			break
+			;;
+		*)
+			if [test $i -eq 2]; then
+				AC_MSG_RESULT([none])
+				AC_MSG_ERROR([Xerces cannot function without a MsgLoader])
+			fi
+			;;
+		esac
+	done
+	if test x"$msgloader" != x; then
+		AC_MSG_RESULT($msgloader)
+	fi
+	
+	# Define the auto-make conditionals which determine what actually gets compiled
+	# Note that these macros can't be executed conditionally, which is why they're here, not above.
+	AM_CONDITIONAL([XERCES_USE_MSGLOADER_INMEMORY],	[test x"$msgloader" = xinmemory])
+	
+	]
+)
+

Added: xerces/c/branches/jberry/3.0-unstable/m4/xerces_netaccessor_selection.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_netaccessor_selection.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_netaccessor_selection.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_netaccessor_selection.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,174 @@
+dnl @synopsis XERCES_NETACCESSOR_SELECTION
+dnl
+dnl Determines the which netaccessor to use
+dnl
+dnl @category C
+dnl @author James Berry
+dnl @version 2005-05-23
+dnl @license AllPermissive
+dnl
+dnl $Id$
+
+AC_DEFUN([XERCES_NETACCESSOR_SELECTION],
+	[
+
+	######################################################
+	# Test for availability of each netaccessor on this host.
+	# For each netaccessor that's available, and hasn't been disabled, add it to our list.
+	# If the netaccessor has been explicitly "enable"d, then vote for it strongly,
+	# in upper case.
+	######################################################
+	na_list=
+	
+	AC_MSG_CHECKING([for whether we can support the libcurl-based NetAccessor])
+	list_add=
+	# TODO: netaccessor-curl is disabled for now until actually written: (false just below)
+	AS_IF([false && test x"$xerces_cv_curl_prefix" != x], [
+		AC_ARG_ENABLE([netaccessor-curl],
+			AS_HELP_STRING([--enable-netaccessor-curl],
+				[Enable libcurl-based NetAccessor support]),
+			[AS_IF([test x"$enableval" = xyes],
+				[list_add=CURL])],
+			[list_add=curl])
+	])
+	AS_IF([test x"$list_add" != x],
+		[na_list="$na_list $list_add"; AC_MSG_RESULT(yes)],
+		[AC_MSG_RESULT(no)]
+	)
+	
+	
+	AC_MSG_CHECKING([for whether we can support the libwww-based NetAccessor])
+	list_add=
+	AS_IF([test x"$libwww_dir" != x], [
+		AC_ARG_ENABLE([netaccessor-libwww],
+			AS_HELP_STRING([--enable-netaccessor-libwww],
+				[Enable libwww-based NetAccessor support]),
+			[AS_IF([test x"$enableval" = xyes],
+				[list_add=LIBWWW])],
+			[na_list=libwww])
+	])
+	AS_IF([test x"$list_add" != x],
+		[na_list="$na_list $list_add"; AC_MSG_RESULT(yes)],
+		[AC_MSG_RESULT(no)]
+	)
+	
+	
+	AC_MSG_CHECKING([for whether we can support the sockets-based NetAccessor])
+	list_add=
+	AS_IF([test x"$ac_cv_header_sys_socket_h" = xyes],
+		[AC_ARG_ENABLE([netaccessor-socket],
+			AS_HELP_STRING([--enable-netaccessor-socket],
+				[Enable sockets-based NetAccessor support]),
+			[AS_IF([test x"$enableval" = xyes],
+				[list_add=SOCKET])],
+			[list_add=socket])
+		])
+	AS_IF([test x"$list_add" != x],
+		[na_list="$na_list $list_add"; AC_MSG_RESULT(yes)],
+		[AC_MSG_RESULT(no)]
+	)
+	
+	
+	AC_MSG_CHECKING([for whether we can support the CFURL NetAccessor (Mac OS X)])
+	list_add=
+	case $host_os in
+	darwin*)
+		if test x"$ac_cv_header_CoreServices_CoreServices_h" = xyes; then
+		AC_ARG_ENABLE([netaccessor-cfurl],
+			AS_HELP_STRING([--enable-netaccessor-cfurl],
+				[Enable cfurl-based NetAccessor support]),
+			[AS_IF([test x"$enableval" = xyes],
+				[list_add=CFURL])],
+			[list_add=cfurl])
+		fi
+		;;
+	esac
+	AS_IF([test x"$list_add" != x],
+		[na_list="$na_list $list_add"; AC_MSG_RESULT(yes)],
+		[AC_MSG_RESULT(no)]
+	)
+	
+	
+	# TODO: FINALIZE THIS TEST FOR AVAILABILITY OF WINSOCK NETACCESSOR
+	AC_MSG_CHECKING([for whether we can support the WinSock NetAccessor (Windows)])
+	list_add=
+	case $host_os in
+	some-test-for-windows-os*)
+		AC_ARG_ENABLE([netaccessor-winsock],
+			AS_HELP_STRING([--enable-netaccessor-winsock],
+				[Enable winsock-based NetAccessor support]),
+			[AS_IF([test x"$enableval" = xyes],
+				[list_add=WINSOCK])],
+			[list_add=winsock])
+		;;
+	esac
+	AS_IF([test x"$list_add" != x],
+		[na_list="$na_list $list_add"; AC_MSG_RESULT(yes)],
+		[AC_MSG_RESULT(no)]
+	)
+	
+	
+	######################################################
+	# Determine which netaccessor to use.
+	#
+	# We do this in two passes. Accessors that have been enabled with "yes",
+	# and which start out in upper case, get the top priority on the first pass.
+	# On the second pass, we consider those which are simply available, but
+	# which were not "disable"d (these won't even be in our list).
+	######################################################
+	netaccessor=
+	AC_MSG_CHECKING([for which NetAccessor to use (choices:$na_list)])
+	for i in 1 2; do
+		# Swap upper/lower case in string:
+		na_list=`echo $na_list | tr 'A-Za-z' 'a-zA-Z'`
+		
+		# Check for each netaccessor, in implicit rank order
+		case $na_list in
+		*curl*)
+			AC_DEFINE([XERCES_USE_NETACCESSOR_CURL], 1, [Define to use the CURL NetAccessor])
+			netaccessor=curl
+			break
+			;;
+		*cfurl*)
+			AC_DEFINE([XERCES_USE_NETACCESSOR_CFURL], 1, [Define to use the Mac OS X CFURL NetAccessor])
+			netaccessor=cfurl
+			XERCES_LINK_DARWIN_FRAMEWORK([CoreServices])
+			break
+			;;
+		*winsock*)
+			AC_DEFINE([XERCES_USE_NETACCESSOR_WINSOCK], 1, [Define to use the WinSock NetAccessor])
+			netaccessor=winsock
+			break
+			;;
+		*socket*)
+			AC_DEFINE([XERCES_USE_NETACCESSOR_SOCKET], 1, [Define to use the Sockets-based NetAccessor])
+			netaccessor=socket
+			break
+			;;
+		*libwww*)
+			AC_DEFINE([XERCES_USE_NETACCESSOR_LIBWWW], 1, [Define to use the libwww NetAccessor])
+			netaccessor=libwww
+			break
+			;;
+		*)
+			if [test $i -eq 2]; then
+				AC_MSG_RESULT([none available; there will be no network access!!!])
+			fi
+			;;
+		esac
+	done
+	if test x"$netaccessor" != x; then
+		AC_MSG_RESULT($netaccessor)
+	fi
+	
+	# Define the auto-make conditionals which determine what actually gets compiled
+	# Note that these macros can't be executed conditionally, which is why they're here, not above.
+	AM_CONDITIONAL([XERCES_USE_NETACCESSOR_CURL],		[test x"$netaccessor" = xcurl])
+	AM_CONDITIONAL([XERCES_USE_NETACCESSOR_CFURL],		[test x"$netaccessor" = xcfurl])
+	AM_CONDITIONAL([XERCES_USE_NETACCESSOR_WINSOCK],	[test x"$netaccessor" = xwinsockl])
+	AM_CONDITIONAL([XERCES_USE_NETACCESSOR_SOCKET],		[test x"$netaccessor" = xsocket])
+	AM_CONDITIONAL([XERCES_USE_NETACCESSOR_LIBWWW],		[test x"$netaccessor" = xlibwww])
+
+	]
+)
+

Added: xerces/c/branches/jberry/3.0-unstable/m4/xerces_transcoder_selection.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_transcoder_selection.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_transcoder_selection.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_transcoder_selection.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,110 @@
+dnl @synopsis XERCES_TRANSCODER_SELECTION
+dnl
+dnl Determines the which transcoder to use
+dnl
+dnl @category C
+dnl @author James Berry
+dnl @version 2005-05-23
+dnl @license AllPermissive
+dnl
+dnl $Id$
+
+AC_DEFUN([XERCES_TRANSCODER_SELECTION],
+	[
+
+	######################################################
+	# Test for availability of each transcoder on this host.
+	# For each transcoder that's available, and hasn't been disabled, add it to our list.
+	# If the transcoder has been explicitly "enable"d, then vote for it strongly,
+	# in upper case.
+	######################################################
+	
+	tc_list=
+	
+
+	# Check for ICU
+	AC_REQUIRE([XERCES_ICU_PREFIX])
+	AC_MSG_CHECKING([for whether we can support the ICU Transcoder])
+	list_add=
+	AS_IF([test x"$xerces_cv_icu_prefix" != x], [
+		AC_ARG_ENABLE([transcoder-icu],
+			AS_HELP_STRING([--enable-transcoder-icu],
+				[Enable icu-based transcoder support]),
+			[AS_IF([test x"$enableval" = xyes],
+				[list_add=ICU])],
+			[list_add=icu])
+	])
+	AS_IF([test x"$list_add" != x],
+		[tc_list="$tc_list $list_add"; AC_MSG_RESULT(yes)],
+		[AC_MSG_RESULT(no)]
+	)
+	
+	
+	# Check for MacOSUnicodeConverter
+	AC_MSG_CHECKING([for whether we can support the MacOSUnicodeConverter Transcoder])
+	case $host_os in
+	darwin*)
+		if test x"$ac_cv_header_CoreServices_CoreServices_h" = xyes; then
+		AC_ARG_ENABLE([transcoder-macosunicodeconverter],
+			AS_HELP_STRING([--enable-transcoder-macosunicodeconverter],
+				[Enable MacOSUnicodeConverter-based transcoder support]),
+			[AS_IF([test x"$enableval" = xyes],
+				[list_add=MACOSUNICODECONVERTER])],
+			[list_add=macosunicodeconverter])
+		fi
+		;;
+	esac
+	AS_IF([test x"$list_add" != x],
+		[tc_list="$tc_list $list_add"; AC_MSG_RESULT(yes)],
+		[AC_MSG_RESULT(no)]
+	)
+
+	# TODO: Tests for additional transcoders
+	
+	
+	######################################################
+	# Determine which transcoder to use.
+	#
+	# We do this in two passes. Transcoders that have been enabled with "yes",
+	# and which start out in upper case, get the top priority on the first pass.
+	# On the second pass, we consider those which are simply available, but
+	# which were not "disable"d (these won't even be in our list).
+	######################################################
+	transcoder=
+	AC_MSG_CHECKING([for which Transcoder to use (choices:$tc_list)])
+	for i in 1 2; do
+		# Swap upper/lower case in the tc_list
+		tc_list=`echo $tc_list | tr 'A-Za-z' 'a-zA-Z'`
+		
+		# Check for each transcoder, in implicit rank order
+		case $tc_list in
+		*icu*)
+			AC_DEFINE([XERCES_USE_TRANSCODER_ICU], 1, [Define to use the ICU-based transcoder])
+			transcoder=icu
+			break
+			;;
+		*macosunicodeconverter*)
+			AC_DEFINE([XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER], 1, [Define to use the Mac OS UnicodeConverter-based transcoder])
+			transcoder=macosunicodeconverter
+			break
+			;;
+		*)
+			if [test $i -eq 2]; then
+				AC_MSG_RESULT([none])
+				AC_MSG_ERROR([Xerces cannot function without a transcoder])
+			fi
+			;;
+		esac
+	done
+	if test x"$transcoder" != x; then
+		AC_MSG_RESULT($transcoder)
+	fi
+	
+	# Define the auto-make conditionals which determine what actually gets compiled
+	# Note that these macros can't be executed conditionally, which is why they're here, not above.
+	AM_CONDITIONAL([XERCES_USE_TRANSCODER_ICU],						[test x"$transcoder" = xicu])
+	AM_CONDITIONAL([XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER],	[test x"$transcoder" = xmacosunicodeconverter])
+
+	]
+)
+

Added: xerces/c/branches/jberry/3.0-unstable/m4/xerces_type_16bit_int.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_type_16bit_int.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_type_16bit_int.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_type_16bit_int.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,31 @@
+dnl @synopsis XERCES_TYPE_16BIT_INT
+dnl
+dnl Determines what type to use a 16 bit int
+dnl defines TYPE_16BIT_INT if it is found.
+dnl
+dnl @category C
+dnl @author James Berry
+dnl @version 2005-02-20
+dnl @license AllPermissive
+dnl
+dnl $Id$
+
+AC_DEFUN([XERCES_TYPE_16BIT_INT],
+	[
+	AC_CHECK_SIZEOF(short)
+	AC_CHECK_SIZEOF(int)
+	AC_CACHE_CHECK([for an appropriate 16 bit integer type], [xerces_cv_type_16bit_int],
+			[
+			 if test $ac_cv_sizeof_int  -eq 2; then
+			  xerces_cv_type_16bit_int=int
+			 elif test $ac_cv_sizeof_short -eq 2; then
+			  xerces_cv_type_16bit_int=short
+			 else
+			  AC_MSG_ERROR([Couldn't find a 16 bit int type])
+			 fi
+			]
+		)
+	AC_DEFINE_UNQUOTED(TYPE_16BIT_INT, $xerces_cv_type_16bit_int, [An appropriate 16 bit integer type])
+	]
+)
+

Added: xerces/c/branches/jberry/3.0-unstable/m4/xerces_type_32bit_int.m4
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/m4/xerces_type_32bit_int.m4?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/m4/xerces_type_32bit_int.m4 (added)
+++ xerces/c/branches/jberry/3.0-unstable/m4/xerces_type_32bit_int.m4 Wed May 25 07:36:02 2005
@@ -0,0 +1,31 @@
+dnl @synopsis XERCES_TYPE_32BIT_INT
+dnl
+dnl Determines what type to use a 32 bit int
+dnl defines TYPE_32BIT_INT if it is found.
+dnl
+dnl @category C
+dnl @author James Berry
+dnl @version 2005-02-20
+dnl @license AllPermissive
+dnl
+dnl $Id$
+
+AC_DEFUN([XERCES_TYPE_32BIT_INT],
+	[
+	AC_CHECK_SIZEOF(int)
+	AC_CHECK_SIZEOF(long)
+	AC_CACHE_CHECK([for an appropriate 32 bit integer type], [xerces_cv_type_32bit_int],
+			[
+			 if test $ac_cv_sizeof_int -eq 4; then
+			  xerces_cv_type_32bit_int=int
+			 elif test $ac_cv_sizeof_long -eq 4; then
+			  xerces_cv_type_32bit_int=long
+			 else
+			  AC_MSG_ERROR([Couldn't find a 32 bit int type])
+			 fi
+			]
+		)
+	AC_DEFINE_UNQUOTED(TYPE_32BIT_INT, $xerces_cv_type_32bit_int, [An appropriate 32 bit integer type])
+	]
+)
+

Added: xerces/c/branches/jberry/3.0-unstable/obj/Makefile.am
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/obj/Makefile.am?rev=178446&view=auto
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/obj/Makefile.am (added)
+++ xerces/c/branches/jberry/3.0-unstable/obj/Makefile.am Wed May 25 07:36:02 2005
@@ -0,0 +1,28 @@
+#
+# Copyright 2005 The Apache Software Foundation.
+# 
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# 
+#      http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+#
+# $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+#
+
+src	=						${top_srcdir}/src
+lib	=						${top_srcdir}/lib
+
+lib_LTLIBRARIES	= 			libXerces.la
+libXerces_la_SOURCES =
+nodist_EXTRA_libXerces_la_SOURCES = dummyfile-to-force-cpp-linking.cpp
+
+libXerces_la_LIBADD = 		${src}/libsrc.la ${lib}/libcompat.la
\ No newline at end of file

Modified: xerces/c/branches/jberry/3.0-unstable/obj/Makefile.in
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/obj/Makefile.in?rev=178446&r1=178445&r2=178446&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/obj/Makefile.in (original)
+++ xerces/c/branches/jberry/3.0-unstable/obj/Makefile.in Wed May 25 07:36:02 2005
@@ -1,5 +1,21 @@
+# Makefile.in generated by automake 1.9.5 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005  Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
 #
-# Copyright 1999-2004 The Apache Software Foundation.
+# Copyright 2005 The Apache Software Foundation.
 # 
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -13,236 +29,484 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-#
+
 #
 # $Id$
 #
 
-###################################################################
-#                    IMPORTANT NOTE                               #
-###################################################################
-# If you are going to do the OS390BATCH build, make sure you have #
-# the OS390BATCH environment variable set.                        #
-#                                                                 #
-#   export OS390BATCH=1                                           #
-#                                                                 #
-###################################################################
-
-PLATFORM = @platform@
-CC  = @cc@
-CXX = @cxx@
-CXXVER = @cxxver@
-GCC = @GCC@
-GXX = @GXX@
-PREFIX = @prefix@
-LDFLAGS = @ldflags@
-LIBS = @libs@
-OSVER = @osver@
-TRANSCODER = @transcoder@
-MESSAGELOADER = @messageloader@
-BITSTOBUILD = @bitstobuild@
-
-include ../version.incl
-include ../src/xercesc/Makefile.incl
-
-LIB=${XERCESCROOT}/lib
-## OS390BATCH
-ifeq (${OS390BATCH},1)
-BATCH_TARGET = "//'${LOADMOD}(IXM4C56)'"
-BATCH_EXP = "//'${LOADEXP}(IXM4C56)'"
-DEPDOM_TARGET = "//'${LOADMOD}(IXMDD56)'"
-endif
-
-ALL_OBJECTS=$(wildcard $(PLATFORM)/*.o)
-# obj/<platform>/depdom/*.o
-DEPDOM_OBJECTS=$(wildcard $(PLATFORM)/depdom/*.o)
-DEPDOM_OBJS_REF=${DEPDOM_OBJECTS} 
-# obj/<platform>/*.o
-DEPDOM_OBJS=$(subst depdom/,,${DEPDOM_OBJS_REF}) 
-
-#######################################################
-#  HP-UX with CC compiler is awkward since it does    #
-#  not instantiate templates automatically. To do so  #
-#  you need to invoke the linker. So, just for this   #
-#  compiler, we try to create a dummy executable      #
-#  before we create the shared library.  This will    #
-#  force all templates to be instantiated and the     #
-#  shared library is created with all template        #
-#  instantiations in place.                           #
-#######################################################
-
-ifeq (${PLATFORM},HPUX)
-  ifeq (${CXX},CC)
-    ######  Start HP-UX  CC compiler specific stuff #######
-
-    DUMMYEXE=$(XML_LIB_DIR)/dummyExe
-    TEMPLATESOBJS=$(wildcard $(TEMPLATESREPOSITORY)/*.o)
-
-    all: $(DUMMYEXE) ${FQ_REAL_NAME} ${FQ_REAL_DEPDOM}
-	\rm -f $(DUMMYEXE)
-
-    $(DUMMYEXE): $(ALL_OBJECTS)
-	${MAKE_SHARED} -o ${@} $^ $(PLATFORM_LIBRARIES) $(ALLLIBS)
-
-    ######  End HP-UX  CC compiler specific stuff #######
-  else
-    all: ${FQ_REAL_NAME} ${FQ_REAL_DEPDOM}
-  endif
-else
-   ## Start OS390BATCH ##
-  ifeq (${OS390BATCH},1)
-all: ${BATCH_TARGET} ${DEPDOM_TARGET}
-   ## End OS390BATCH ##
-  else
-    ifeq (${PLATFORM},CYGWIN)
-all: ${FQ_SO_NAME} ${FQ_SO_DEPDOM}
-    else
-all: ${FQ_REAL_NAME} ${FQ_REAL_DEPDOM}
-    endif
-  endif
-endif
-
-########################################################
-#                                                      #
-# OS/390 works pretty much the same way as Windows NT  #
-# as far as linking goes. The runtime library is       #
-# called .dll, and the link-time libraries have a .x   #
-# extension. You need the .x files to link             #
-# your application at build time and need the .dll     #
-# file to run it. So, we need to copy over the .x      #
-# file to the lib directory as well, so that you can   #
-# link your application.                               #
-########################################################
-
-ifeq (${PLATFORM},CYGWIN)
-${FQ_SO_NAME}:	$(ALL_OBJECTS)
-	@echo Building ${FQ_SO_NAME}
-	${MAKE_SHARED} ${LD_SONAME} -o ${@} ${^} $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(EXTRA_LINK_OPTIONS) $(ALLLIBS)
-	@echo symlink ${FQ_REAL_NAME}.a
-	rm -rf ${FQ_REAL_NAME}.a   && ln -s ${XML_LIB_DIR}/${LIBNAME}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a ${FQ_REAL_NAME}.a
-	@echo symlink ${FQ_LINK_NAME}.a
-	rm -rf ${FQ_LINK_NAME}.a && ln -s ${FQ_REAL_NAME}.a ${FQ_LINK_NAME}.a
-
-## DepDOM ##
-${FQ_SO_DEPDOM}: $(DEPDOM_OBJECTS)
-	@echo Building ${FQ_SO_DEPDOM}
-	${MAKE_SHARED} ${LD_SODEPDOM} -o ${@} ${^} $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(DEPDOM_LINK_OPTIONS) $(ALLLIBS) -L${LIB} -l${LINK_LIBNAME}
-	@echo symlink ${FQ_REAL_DEPDOM}.a
-	rm -rf ${FQ_REAL_DEPDOM}.a   && ln -s ${XML_LIB_DIR}/${LIBDEPDOM}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a ${FQ_REAL_DEPDOM}.a
-	@echo symlink ${FQ_LINK_DEPDOM}.a
-	rm -rf ${FQ_LINK_DEPDOM}.a && ln -s ${FQ_REAL_DEPDOM}.a ${FQ_LINK_DEPDOM}.a
-endif
-
-${FQ_REAL_NAME}: $(ALL_OBJECTS)
-	@echo Building ${FQ_REAL_NAME}
-	${MAKE_SHARED} ${LD_SONAME} -o ${@} ${^} $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(EXTRA_LINK_OPTIONS) $(ALLLIBS)
-    ifeq (${PLATFORM},OS390)
-	$(CP) ${LIBNAME}${VER}${OS390SIDEDECK} ${LIB}
-    endif
-    ifneq (${FQ_SO_NAME},${FQ_REAL_NAME})
-	@echo symlink ${FQ_SO_NAME} 
-	rm -rf ${FQ_SO_NAME}   && ln -s ${FQ_REAL_NAME} ${FQ_SO_NAME}
-    endif
-	@echo symlink ${FQ_LINK_NAME}
-	rm -rf ${FQ_LINK_NAME} && ln -s ${FQ_SO_NAME} ${FQ_LINK_NAME}
-
-## DepDOM ##
-${FQ_REAL_DEPDOM}: $(DEPDOM_OBJECTS)
-	@echo Building ${FQ_REAL_DEPDOM}
-ifeq (${PLATFORM},SOLARIS)
-	cp $(DEPDOM_OBJECTS) $(PLATFORM)
-	${MAKE_SHARED} ${LD_SODEPDOM} -o ${@} ${DEPDOM_OBJS} $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(DEPDOM_LINK_OPTIONS) $(ALLLIBS) -L${LIB} -l${LINK_LIBNAME}
-	rm ${DEPDOM_OBJS}
-else
-ifeq (${PLATFORM},OS390)
-	${MAKE_SHARED} ${LD_SODEPDOM} -o ${@} ${^} $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(DEPDOM_LINK_OPTIONS) $(ALLLIBS) ${LIB}/${LIBNAME}${VER}${OS390SIDEDECK}
-	$(CP) ${LIBDEPDOM}${VER}${OS390SIDEDECK} ${LIB}
-else
-	${MAKE_SHARED} ${LD_SODEPDOM} -o ${@} ${^} $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(DEPDOM_LINK_OPTIONS) $(ALLLIBS) -L${LIB} -l${LINK_LIBNAME}
-endif
-endif
-    ifneq (${FQ_SO_DEPDOM},${FQ_REAL_DEPDOM})   
-	@echo symlink ${FQ_SO_DEPDOM} 
-	rm -rf ${FQ_SO_DEPDOM}   && ln -s ${FQ_REAL_DEPDOM} ${FQ_SO_DEPDOM}
-    endif
-	@echo symlink ${FQ_LINK_DEPDOM}
-	rm -rf ${FQ_LINK_DEPDOM} && ln -s ${FQ_SO_DEPDOM} ${FQ_LINK_DEPDOM}
-	
-## Start OS390 ##
-ifeq (${PLATFORM},OS390)
-## Start OS390BATCH ##
-ifeq (${OS390BATCH},1)
-${BATCH_TARGET}:        $(ALL_OBJECTS)
-	@echo Building ${BATCH_TARGET}
-	${MAKE_SHARED} -o ${@} ${^} $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(EXTRA_LINK_OPTIONS) $(ALLLIBS)
-${DEPDOM_TARGET}:        $(DEPDOM_OBJECTS)
-	@echo Building ${DEPDOM_TARGET}
-	${MAKE_SHARED} -o ${@} ${^} $(TEMPLATESOBJS) $(PLATFORM_LIBRARIES) $(DEPDOM_LINK_OPTIONS) $(ALLLIBS) $(BATCH_EXP)
-endif
-endif
-
-## End OS390 and OS390BATCH
-
-
-clean:
-	@echo "Making clean in obj ..."
-	-rm -f $(ALL_OBJECTS) ${FQ_REAL_NAME} ${FQ_REAL_DEPDOM}
-ifneq ($(strip $(TEMPLATESREPOSITORY)),)
-	-rm -f $(TEMPLATESREPOSITORY)/*.o
-	-rm -f $(TEMPLATESREPOSITORY)/*.c
-	-rm -f $(TEMPLATESREPOSITORY)/*.cs
-	-rm -f $(TEMPLATESREPOSITORY)/*.he
-endif
-ifeq (${PLATFORM}, CYGWIN)
-	-rm -f ${XML_LIB_DIR}/${LIBNAME}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a
-	-rm -f ${FQ_LINK_NAME}.a
-	-rm -f ${FQ_REAL_NAME}.a
-
-	-rm -f ${XML_LIB_DIR}/${LIBDEPDOM}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a
-	-rm -f ${FQ_LINK_DEPDOM}.a
-	-rm -f ${FQ_REAL_DEPDOM}.a	
-else
-	-rm -f ${FQ_SO_NAME}
-	-rm -f ${FQ_LINK_NAME}
-	
-	-rm -f ${FQ_SO_DEPDOM}
-	-rm -f ${FQ_LINK_DEPDOM}	
-endif
-	-rm -f *.map
+SOURCES = $(libXerces_la_SOURCES) $(nodist_EXTRA_libXerces_la_SOURCES)
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ..
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+subdir = obj
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/m4/cxx_have_bool.m4 \
+	$(top_srcdir)/m4/cxx_have_lstring.m4 \
+	$(top_srcdir)/m4/cxx_have_namespaces.m4 \
+	$(top_srcdir)/m4/cxx_have_std_libs.m4 \
+	$(top_srcdir)/m4/cxx_have_std_namespace.m4 \
+	$(top_srcdir)/m4/xerces_curl_prefix.m4 \
+	$(top_srcdir)/m4/xerces_icu_prefix.m4 \
+	$(top_srcdir)/m4/xerces_libwww_prefix.m4 \
+	$(top_srcdir)/m4/xerces_link_darwin_framework.m4 \
+	$(top_srcdir)/m4/xerces_msgloader_selection.m4 \
+	$(top_srcdir)/m4/xerces_netaccessor_selection.m4 \
+	$(top_srcdir)/m4/xerces_transcoder_selection.m4 \
+	$(top_srcdir)/m4/xerces_type_16bit_int.m4 \
+	$(top_srcdir)/m4/xerces_type_32bit_int.m4 \
+	$(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+	$(ACLOCAL_M4)
+mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/x_config.h
+CONFIG_CLEAN_FILES =
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+    *) f=$$p;; \
+  esac;
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+am__installdirs = "$(DESTDIR)$(libdir)"
+libLTLIBRARIES_INSTALL = $(INSTALL)
+LTLIBRARIES = $(lib_LTLIBRARIES)
+libXerces_la_DEPENDENCIES = ${src}/libsrc.la ${lib}/libcompat.la
+am_libXerces_la_OBJECTS =
+libXerces_la_OBJECTS = $(am_libXerces_la_OBJECTS)
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -I$(top_builddir)
+depcomp = $(SHELL) $(top_srcdir)/config/depcomp
+am__depfiles_maybe = depfiles
+CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
+	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
+	$(AM_CXXFLAGS) $(CXXFLAGS)
+CXXLD = $(CXX)
+CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
+	$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+SOURCES = $(libXerces_la_SOURCES) $(nodist_EXTRA_libXerces_la_SOURCES)
+DIST_SOURCES = $(libXerces_la_SOURCES)
+ETAGS = etags
+CTAGS = ctags
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ACLOCAL = @ACLOCAL@
+AMDEP_FALSE = @AMDEP_FALSE@
+AMDEP_TRUE = @AMDEP_TRUE@
+AMTAR = @AMTAR@
+AR = @AR@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CURL_PREFIX = @CURL_PREFIX@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+ECHO = @ECHO@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+F77 = @F77@
+FFLAGS = @FFLAGS@
+ICU_PREFIX = @ICU_PREFIX@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LDFLAGS = @LDFLAGS@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LTLIBOBJS = @LTLIBOBJS@
+MAINT = @MAINT@
+MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
+MAKEINFO = @MAKEINFO@
+OBJEXT = @OBJEXT@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+RANLIB = @RANLIB@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+STRIP = @STRIP@
+VERSION = @VERSION@
+XERCES_USE_MSGLOADER_INMEMORY_FALSE = @XERCES_USE_MSGLOADER_INMEMORY_FALSE@
+XERCES_USE_MSGLOADER_INMEMORY_TRUE = @XERCES_USE_MSGLOADER_INMEMORY_TRUE@
+XERCES_USE_NETACCESSOR_CFURL_FALSE = @XERCES_USE_NETACCESSOR_CFURL_FALSE@
+XERCES_USE_NETACCESSOR_CFURL_TRUE = @XERCES_USE_NETACCESSOR_CFURL_TRUE@
+XERCES_USE_NETACCESSOR_CURL_FALSE = @XERCES_USE_NETACCESSOR_CURL_FALSE@
+XERCES_USE_NETACCESSOR_CURL_TRUE = @XERCES_USE_NETACCESSOR_CURL_TRUE@
+XERCES_USE_NETACCESSOR_LIBWWW_FALSE = @XERCES_USE_NETACCESSOR_LIBWWW_FALSE@
+XERCES_USE_NETACCESSOR_LIBWWW_TRUE = @XERCES_USE_NETACCESSOR_LIBWWW_TRUE@
+XERCES_USE_NETACCESSOR_SOCKET_FALSE = @XERCES_USE_NETACCESSOR_SOCKET_FALSE@
+XERCES_USE_NETACCESSOR_SOCKET_TRUE = @XERCES_USE_NETACCESSOR_SOCKET_TRUE@
+XERCES_USE_NETACCESSOR_WINSOCK_FALSE = @XERCES_USE_NETACCESSOR_WINSOCK_FALSE@
+XERCES_USE_NETACCESSOR_WINSOCK_TRUE = @XERCES_USE_NETACCESSOR_WINSOCK_TRUE@
+XERCES_USE_TRANSCODER_ICU_FALSE = @XERCES_USE_TRANSCODER_ICU_FALSE@
+XERCES_USE_TRANSCODER_ICU_TRUE = @XERCES_USE_TRANSCODER_ICU_TRUE@
+XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER_FALSE = @XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER_FALSE@
+XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER_TRUE = @XERCES_USE_TRANSCODER_MACOSUNICODECONVERTER_TRUE@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_F77 = @ac_ct_F77@
+ac_ct_RANLIB = @ac_ct_RANLIB@
+ac_ct_STRIP = @ac_ct_STRIP@
+am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
+am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+datadir = @datadir@
+exec_prefix = @exec_prefix@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+src = ${top_srcdir}/src
+lib = ${top_srcdir}/lib
+lib_LTLIBRARIES = libXerces.la
+libXerces_la_SOURCES = 
+nodist_EXTRA_libXerces_la_SOURCES = dummyfile-to-force-cpp-linking.cpp
+libXerces_la_LIBADD = ${src}/libsrc.la ${lib}/libcompat.la
+all: all-am
+
+.SUFFIXES:
+.SUFFIXES: .cpp .lo .o .obj
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
+	@for dep in $?; do \
+	  case '$(am__configure_deps)' in \
+	    *$$dep*) \
+	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+		&& exit 0; \
+	      exit 1;; \
+	  esac; \
+	done; \
+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  obj/Makefile'; \
+	cd $(top_srcdir) && \
+	  $(AUTOMAKE) --foreign  obj/Makefile
+.PRECIOUS: Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+	@case '$?' in \
+	  *config.status*) \
+	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+	  *) \
+	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
+	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+	esac;
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+install-libLTLIBRARIES: $(lib_LTLIBRARIES)
+	@$(NORMAL_INSTALL)
+	test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
+	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+	  if test -f $$p; then \
+	    f=$(am__strip_dir) \
+	    echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
+	    $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
+	  else :; fi; \
+	done
+
+uninstall-libLTLIBRARIES:
+	@$(NORMAL_UNINSTALL)
+	@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+	  p=$(am__strip_dir) \
+	  echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
+	  $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
+	done
+
+clean-libLTLIBRARIES:
+	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
+	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
+	  test "$$dir" != "$$p" || dir=.; \
+	  echo "rm -f \"$${dir}/so_locations\""; \
+	  rm -f "$${dir}/so_locations"; \
+	done
+libXerces.la: $(libXerces_la_OBJECTS) $(libXerces_la_DEPENDENCIES) 
+	$(CXXLINK) -rpath $(libdir) $(libXerces_la_LDFLAGS) $(libXerces_la_OBJECTS) $(libXerces_la_LIBADD) $(LIBS)
+
+mostlyclean-compile:
+	-rm -f *.$(OBJEXT)
+
+distclean-compile:
+	-rm -f *.tab.c
+
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dummyfile-to-force-cpp-linking.Plo@am__quote@
+
+.cpp.o:
+@am__fastdepCXX_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`; \
+@am__fastdepCXX_TRUE@	if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ $<; \
+@am__fastdepCXX_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Po"; else rm -f "$$depbase.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ $<
+
+.cpp.obj:
+@am__fastdepCXX_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`; \
+@am__fastdepCXX_TRUE@	if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
+@am__fastdepCXX_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Po"; else rm -f "$$depbase.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+
+.cpp.lo:
+@am__fastdepCXX_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`; \
+@am__fastdepCXX_TRUE@	if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ $<; \
+@am__fastdepCXX_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Plo"; else rm -f "$$depbase.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@	$(LTCXXCOMPILE) -c -o $@ $<
+
+mostlyclean-libtool:
+	-rm -f *.lo
+
+clean-libtool:
+	-rm -rf .libs _libs
+
+distclean-libtool:
+	-rm -f libtool
+uninstall-info-am:
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '    { files[$$0] = 1; } \
+	       END { for (i in files) print i; }'`; \
+	mkid -fID $$unique
+tags: TAGS
+
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	tags=; \
+	here=`pwd`; \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '    { files[$$0] = 1; } \
+	       END { for (i in files) print i; }'`; \
+	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
+	  test -n "$$unique" || unique=$$empty_fix; \
+	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+	    $$tags $$unique; \
+	fi
+ctags: CTAGS
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	tags=; \
+	here=`pwd`; \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '    { files[$$0] = 1; } \
+	       END { for (i in files) print i; }'`; \
+	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+	     $$tags $$unique
+
+GTAGS:
+	here=`$(am__cd) $(top_builddir) && pwd` \
+	  && cd $(top_srcdir) \
+	  && gtags -i $(GTAGS_ARGS) $$here
+
+distclean-tags:
+	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+
+distdir: $(DISTFILES)
+	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+	list='$(DISTFILES)'; for file in $$list; do \
+	  case $$file in \
+	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+	  esac; \
+	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+	    dir="/$$dir"; \
+	    $(mkdir_p) "$(distdir)$$dir"; \
+	  else \
+	    dir=''; \
+	  fi; \
+	  if test -d $$d/$$file; then \
+	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+	    fi; \
+	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+	  else \
+	    test -f $(distdir)/$$file \
+	    || cp -p $$d/$$file $(distdir)/$$file \
+	    || exit 1; \
+	  fi; \
+	done
+check-am: all-am
+check: check-am
+all-am: Makefile $(LTLIBRARIES)
+installdirs:
+	for dir in "$(DESTDIR)$(libdir)"; do \
+	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
+	done
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+
+maintainer-clean-generic:
+	@echo "This command is intended for maintainers to use"
+	@echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
+	mostlyclean-am
+
+distclean: distclean-am
+	-rm -rf ./$(DEPDIR)
+	-rm -f Makefile
+distclean-am: clean-am distclean-compile distclean-generic \
+	distclean-libtool distclean-tags
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+info: info-am
 
+info-am:
 
-distclean:	clean
+install-data-am:
+
+install-exec-am: install-libLTLIBRARIES
+
+install-info: install-info-am
+
+install-man:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+	-rm -rf ./$(DEPDIR)
 	-rm -f Makefile
-	-rm -Rf $(XML_OBJ_DIR)
-ifneq ($(strip $(TEMPLATESREPOSITORY)),)
-	-rm -Rf $(TEMPLATESREPOSITORY)
-endif
-
-
-install:
-ifeq (${OS390BATCH},1)
-	@echo "Nothing to do for OS390BATCH ..."
-else
-	-mkdir -p ${DESTDIR}${PREFIX}/lib
-ifeq (${PLATFORM}, CYGWIN)
-	-mkdir -p ${DESTDIR}${PREFIX}/bin
-	$(CP) ${FQ_SO_NAME} ${DESTDIR}${PREFIX}/bin
-	$(CP) $(XML_LIB_DIR)/${LIBNAME}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a ${DESTDIR}${PREFIX}/lib
-	(cd ${DESTDIR}$(PREFIX)/lib; rm -f ${LINK_NAME}.a libxerces.dll.a; ln -s ${LIBNAME}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a ${LINK_NAME}.a; ln -s ${LIBNAME}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a libxerces.dll.a)
-
-	$(CP) ${FQ_SO_DEPDOM} ${DESTDIR}${PREFIX}/bin
-	$(CP) $(XML_LIB_DIR)/${LIBDEPDOM}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a ${DESTDIR}${PREFIX}/lib
-	(cd ${DESTDIR}$(PREFIX)/lib; rm -f ${LINK_DEPDOM}.a libxercesdepdom.dll.a; ln -s ${LIBDEPDOM}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a ${LINK_NAME}.a; ln -s ${LIBDEPDOM}${SO_TARGET_VERSION}${SHLIBSUFFIX}.a libxercesdepdom.dll.a)
-else
-	$(CP) ${FQ_REAL_NAME} ${DESTDIR}$(PREFIX)/lib
-	(cd ${DESTDIR}$(PREFIX)/lib; ln -s ${REAL_NAME} ${SO_NAME}; ln -s ${REAL_NAME} ${LINK_NAME})
-	
-	$(CP) ${FQ_REAL_DEPDOM} ${DESTDIR}$(PREFIX)/lib
-	(cd ${DESTDIR}$(PREFIX)/lib; ln -s ${REAL_DEPDOM} ${SO_DEPDOM}; ln -s ${REAL_DEPDOM} ${LINK_DEPDOM})	
-endif
-ifeq (${PLATFORM},OS390)
-	$(CP) ${LIBNAME}${VER}${OS390SIDEDECK} ${DESTDIR}$(PREFIX)/lib
-	$(CP) ${LIBDEPDOM}${VER}${OS390SIDEDECK} ${DESTDIR}$(PREFIX)/lib	
-endif
-endif
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
+	mostlyclean-libtool
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES
+
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+	clean-libLTLIBRARIES clean-libtool ctags distclean \
+	distclean-compile distclean-generic distclean-libtool \
+	distclean-tags distdir dvi dvi-am html html-am info info-am \
+	install install-am install-data install-data-am install-exec \
+	install-exec-am install-info install-info-am \
+	install-libLTLIBRARIES install-man install-strip installcheck \
+	installcheck-am installdirs maintainer-clean \
+	maintainer-clean-generic mostlyclean mostlyclean-compile \
+	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+	tags uninstall uninstall-am uninstall-info-am \
+	uninstall-libLTLIBRARIES
 
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org