1998-07-24 19:24:09 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
2001-06-29 21:31:07 +00:00
|
|
|
|
2010-03-09 11:32:46 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
2022-09-04 18:22:30 +02:00
|
|
|
SUBDIRS = include . doc example xstc
|
2022-03-29 13:37:16 +02:00
|
|
|
if WITH_PYTHON
|
|
|
|
SUBDIRS += python
|
|
|
|
endif
|
2022-09-04 18:22:30 +02:00
|
|
|
if WITH_GLOB
|
|
|
|
SUBDIRS += fuzz
|
|
|
|
endif
|
1999-02-06 18:12:01 +00:00
|
|
|
|
2020-10-25 20:02:23 +01:00
|
|
|
DIST_SUBDIRS = include . doc example fuzz python xstc
|
2002-09-21 13:08:14 +00:00
|
|
|
|
2022-03-30 00:32:35 +02:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/include -I$(srcdir)/include -DSYSCONFDIR='"$(sysconfdir)"'
|
2012-08-17 10:04:30 +08:00
|
|
|
|
2022-04-03 20:36:38 +02:00
|
|
|
check_PROGRAMS = \
|
|
|
|
runsuite \
|
|
|
|
runtest \
|
|
|
|
runxmlconf \
|
|
|
|
testModule \
|
|
|
|
testapi \
|
|
|
|
testchar \
|
|
|
|
testdict \
|
|
|
|
testlimits \
|
2023-10-22 13:56:55 +02:00
|
|
|
testparser \
|
2022-04-03 20:36:38 +02:00
|
|
|
testrecurse
|
1998-10-17 06:47:46 +00:00
|
|
|
|
2001-08-20 00:08:40 +00:00
|
|
|
bin_PROGRAMS = xmllint xmlcatalog
|
2000-09-24 18:49:59 +00:00
|
|
|
|
2022-08-29 16:13:50 +02:00
|
|
|
bin_SCRIPTS = xml2-config
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
lib_LTLIBRARIES = libxml2.la
|
2022-09-02 02:08:44 +02:00
|
|
|
libxml2_la_CFLAGS = $(AM_CFLAGS) $(XML_PRIVATE_CFLAGS)
|
2022-04-03 02:20:04 +02:00
|
|
|
libxml2_la_LIBADD = $(XML_PRIVATE_LIBS)
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2022-09-02 17:00:05 +02:00
|
|
|
libxml2_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined \
|
Various "make distcheck" and portability fixups
Makefile.am:
* Don't use @VAR@, use $(VAR). Autoconf's AC_SUBST provides us the Make
variable, it allows overriding the value at the command line, and
(notably) it avoids a Make parse error in the libxml2_la_LDFLAGS
assignment when @MODULE_PLATFORM_LIBS@ is empty
* Changed how the THREADS_W32 mechanism switches the build between
testThreads.c and testThreadsWin32.c as appropriate; using AM_CONDITIONAL
allows this to work cleanly and plays well with dependencies
* testapi.c should be specified as BUILT_SOURCES
* Create symlinks to the test/ and result/ subdirs so that the runtests
target is usable in out-of-source-tree builds
* Don't do MAKEFLAGS+=--silent as this is not portable to non-GNU Makes
* Fixed incorrect find(1) syntax in the "cleanup" rule, and doing "rm -f"
instead of just "rm" is good form
* (DIST)CLEANFILES needed a bit more coverage to allow "make distcheck" to
pass
configure.in:
* Need AC_PROG_LN_S to create test/ and result/ symlinks in Makefile.am
* AC_LIBTOOL_WIN32_DLL and AM_PROG_LIBTOOL are obsolete; these have been
superceded by LT_INIT
* Don't rebuild docs by default, as this requires GNU Make (as
implemented)
* Check for uint32_t as some platforms don't provide it
* Check for some more functions, and undefine HAVE_MMAP if we don't also
HAVE_MUNMAP (one system I tested on actually needed this)
* Changed THREADS_W32 from a filename insert into an Automake conditional
* The "Copyright" file will not be in the current directory if builddir !=
srcdir
doc/Makefile.am:
* EXTRA_DIST cannot use wildcards when they refer to generated files; this
breaks dependencies. What I did was define EXTRA_DIST_wc, which uses GNU
Make $(wildcard) directives to build up a list of files, and EXTRA_DIST,
as a literal expansion of EXTRA_DIST_wc. I also added a new rule,
"check-extra-dist", to simplify checking that the two variables are
equivalent. (Note that this works only when builddir == srcdir)
(I can implement this differently if desired; this is just one way of
doing it)
* Don't define an "all" target; this steps on Automake's toes
* Fixed up the "libxml2-api.xml ..." rule by using $(wildcard) for
dependencies (as Make doesn't process the wildcards otherwise) and
qualifying appropriate files with $(srcdir)
(Note that $(srcdir) is not needed in the dependencies, thanks to VPATH,
which we can count on as this is GNU-Make-only code anyway)
doc/devhelp/Makefile.am:
* Qualified appropriate files with $(srcdir)
* Added an "uninstall-local" rule so that "make distcheck" passes
doc/examples/Makefile.am:
* Rather than use a wildcard that doesn't work, use a substitution that
most Make programs can handle
doc/examples/index.py:
* Do the same here
include/libxml/nanoftp.h:
* Some platforms (e.g. MSVC 6) already #define INVALID_SOCKET:
user@host:/cygdrive/c/Program Files/Microsoft Visual Studio/VC98/\
Include$ grep -R INVALID_SOCKET .
./WINSOCK.H:#define INVALID_SOCKET (SOCKET)(~0)
./WINSOCK2.H:#define INVALID_SOCKET (SOCKET)(~0)
include/libxml/xmlversion.h.in:
* Support ancient GCCs (I was actually able to build the library with 2.5
but for this bit)
python/Makefile.am:
* Expanded CLEANFILES to allow "make distcheck" to pass
python/tests/Makefile.am:
* Define CLEANFILES instead of a "clean" rule, and added tmp.xml to allow
"make distcheck" to pass
testRelax.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H (as some
systems have the header but not the function)
testSchemas.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H
testapi.c:
* Don't use putenv() if it's not available
threads.c:
* This fixes the following build error on Solaris 8:
libtool: compile: cc -DHAVE_CONFIG_H -I. -I./include -I./include \
-D_REENTRANT -D__EXTENSIONS__ -D_REENTRANT -Dsparc -Xa -mt -v \
-xarch=v9 -xcrossfile -xO5 -c threads.c -KPIC -DPIC -o threads.o
"threads.c", line 442: controlling expressions must have scalar type
"threads.c", line 512: controlling expressions must have scalar type
cc: acomp failed for threads.c
*** Error code 1
trio.c:
* Define isascii() if the system doesn't provide it
trio.h:
* The trio library's HAVE_CONFIG_H header is not the same as LibXML2's
HAVE_CONFIG_H header; this change is needed to avoid a double-inclusion
win32/configure.js:
* Added support for the LZMA compression option
win32/Makefile.{bcb,mingw,msvc}:
* Added appropriate bits to support WITH_LZMA=1
* Install the header files under $(INCPREFIX)\libxml2\libxml instead of
$(INCPREFIX)\libxml, to mirror the install location on Unix+Autotools
xml2-config.in:
* @MODULE_PLATFORM_LIBS@ (usually "-ldl") needs to be in there in order for
`xml2-config --libs` to provide a complete set of dependencies
xmllint.c:
* Use HAVE_MMAP instead of the less-explicit HAVE_SYS_MMAN_H
2012-08-06 11:32:54 +08:00
|
|
|
-version-info $(LIBXML_VERSION_INFO) \
|
|
|
|
$(MODULE_PLATFORM_LIBS)
|
2022-09-01 05:53:51 +02:00
|
|
|
if USE_VERSION_SCRIPT
|
|
|
|
libxml2_la_LDFLAGS += $(VERSION_SCRIPT_FLAGS)$(srcdir)/libxml2.syms
|
|
|
|
endif
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2022-09-01 05:53:51 +02:00
|
|
|
libxml2_la_SOURCES = buf.c chvalid.c dict.c entities.c encoding.c error.c \
|
|
|
|
globals.c hash.c list.c parser.c parserInternals.c \
|
|
|
|
SAX2.c threads.c tree.c uri.c valid.c xmlIO.c \
|
|
|
|
xmlmemory.c xmlstring.c
|
|
|
|
if WITH_C14N_SOURCES
|
|
|
|
libxml2_la_SOURCES += c14n.c
|
|
|
|
endif
|
|
|
|
if WITH_CATALOG_SOURCES
|
|
|
|
libxml2_la_SOURCES += catalog.c
|
|
|
|
endif
|
|
|
|
if WITH_DEBUG_SOURCES
|
|
|
|
libxml2_la_SOURCES += debugXML.c
|
|
|
|
endif
|
|
|
|
if WITH_HTML_SOURCES
|
|
|
|
libxml2_la_SOURCES += HTMLparser.c HTMLtree.c
|
|
|
|
endif
|
|
|
|
if WITH_HTTP_SOURCES
|
|
|
|
libxml2_la_SOURCES += nanohttp.c
|
|
|
|
endif
|
|
|
|
if WITH_LEGACY_SOURCES
|
|
|
|
libxml2_la_SOURCES += legacy.c
|
|
|
|
endif
|
|
|
|
if WITH_LZMA_SOURCES
|
|
|
|
libxml2_la_SOURCES += xzlib.c
|
|
|
|
endif
|
|
|
|
if WITH_MODULES_SOURCES
|
|
|
|
libxml2_la_SOURCES += xmlmodule.c
|
|
|
|
endif
|
|
|
|
if WITH_OUTPUT_SOURCES
|
|
|
|
libxml2_la_SOURCES += xmlsave.c
|
|
|
|
endif
|
|
|
|
if WITH_PATTERN_SOURCES
|
|
|
|
libxml2_la_SOURCES += pattern.c
|
|
|
|
endif
|
|
|
|
if WITH_READER_SOURCES
|
|
|
|
libxml2_la_SOURCES += xmlreader.c
|
|
|
|
endif
|
|
|
|
if WITH_REGEXPS_SOURCES
|
|
|
|
libxml2_la_SOURCES += xmlregexp.c xmlunicode.c
|
|
|
|
endif
|
|
|
|
if WITH_SCHEMAS_SOURCES
|
|
|
|
libxml2_la_SOURCES += relaxng.c xmlschemas.c xmlschemastypes.c
|
|
|
|
if !WITH_XPATH_SOURCES
|
|
|
|
libxml2_la_SOURCES += xpath.c
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if WITH_SCHEMATRON_SOURCES
|
|
|
|
libxml2_la_SOURCES += schematron.c
|
|
|
|
endif
|
|
|
|
if WITH_WRITER_SOURCES
|
|
|
|
libxml2_la_SOURCES += xmlwriter.c
|
|
|
|
endif
|
|
|
|
if WITH_XINCLUDE_SOURCES
|
|
|
|
libxml2_la_SOURCES += xinclude.c
|
|
|
|
endif
|
|
|
|
if WITH_XPATH_SOURCES
|
|
|
|
libxml2_la_SOURCES += xpath.c
|
|
|
|
endif
|
|
|
|
if WITH_XPTR_SOURCES
|
|
|
|
libxml2_la_SOURCES += xlink.c xpointer.c
|
|
|
|
endif
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2023-12-20 11:42:08 -05:00
|
|
|
DEPS = libxml2.la
|
|
|
|
LDADDS = libxml2.la
|
2003-08-14 01:23:25 +00:00
|
|
|
|
2005-06-26 21:49:08 +00:00
|
|
|
runtest_SOURCES=runtest.c
|
|
|
|
runtest_DEPENDENCIES = $(DEPS)
|
2022-04-03 01:42:17 +02:00
|
|
|
runtest_LDADD= $(BASE_THREAD_LIBS) $(THREAD_LIBS) $(LDADDS)
|
2005-06-30 13:04:44 +00:00
|
|
|
|
2008-08-28 15:36:32 +00:00
|
|
|
testrecurse_SOURCES=testrecurse.c
|
|
|
|
testrecurse_DEPENDENCIES = $(DEPS)
|
2022-04-03 01:42:17 +02:00
|
|
|
testrecurse_LDADD= $(LDADDS)
|
2008-08-28 15:36:32 +00:00
|
|
|
|
2012-07-18 17:43:34 +08:00
|
|
|
testlimits_SOURCES=testlimits.c
|
|
|
|
testlimits_DEPENDENCIES = $(DEPS)
|
2022-04-03 01:42:17 +02:00
|
|
|
testlimits_LDADD= $(LDADDS)
|
2012-07-18 17:43:34 +08:00
|
|
|
|
2008-07-29 09:02:27 +00:00
|
|
|
testchar_SOURCES=testchar.c
|
|
|
|
testchar_DEPENDENCIES = $(DEPS)
|
2022-04-03 01:42:17 +02:00
|
|
|
testchar_LDADD= $(LDADDS)
|
2008-07-29 09:02:27 +00:00
|
|
|
|
2008-08-08 12:03:22 +00:00
|
|
|
testdict_SOURCES=testdict.c
|
|
|
|
testdict_DEPENDENCIES = $(DEPS)
|
2022-04-03 01:42:17 +02:00
|
|
|
testdict_LDADD= $(LDADDS)
|
2008-08-08 12:03:22 +00:00
|
|
|
|
2023-10-22 13:56:55 +02:00
|
|
|
testparser_SOURCES=testparser.c
|
|
|
|
testparser_DEPENDENCIES = $(DEPS)
|
|
|
|
testparser_LDADD= $(LDADDS)
|
|
|
|
|
2005-06-30 13:04:44 +00:00
|
|
|
runsuite_SOURCES=runsuite.c
|
|
|
|
runsuite_DEPENDENCIES = $(DEPS)
|
2022-04-03 01:42:17 +02:00
|
|
|
runsuite_LDADD= $(LDADDS)
|
2005-06-26 21:49:08 +00:00
|
|
|
|
2024-06-16 17:57:12 +02:00
|
|
|
xmllint_SOURCES = xmllint.c shell.c
|
2023-05-05 17:34:57 -04:00
|
|
|
xmllint_CFLAGS = $(AM_CFLAGS) $(RDL_CFLAGS) $(ICONV_CFLAGS)
|
2000-04-03 19:48:13 +00:00
|
|
|
xmllint_DEPENDENCIES = $(DEPS)
|
Various "make distcheck" and portability fixups
Makefile.am:
* Don't use @VAR@, use $(VAR). Autoconf's AC_SUBST provides us the Make
variable, it allows overriding the value at the command line, and
(notably) it avoids a Make parse error in the libxml2_la_LDFLAGS
assignment when @MODULE_PLATFORM_LIBS@ is empty
* Changed how the THREADS_W32 mechanism switches the build between
testThreads.c and testThreadsWin32.c as appropriate; using AM_CONDITIONAL
allows this to work cleanly and plays well with dependencies
* testapi.c should be specified as BUILT_SOURCES
* Create symlinks to the test/ and result/ subdirs so that the runtests
target is usable in out-of-source-tree builds
* Don't do MAKEFLAGS+=--silent as this is not portable to non-GNU Makes
* Fixed incorrect find(1) syntax in the "cleanup" rule, and doing "rm -f"
instead of just "rm" is good form
* (DIST)CLEANFILES needed a bit more coverage to allow "make distcheck" to
pass
configure.in:
* Need AC_PROG_LN_S to create test/ and result/ symlinks in Makefile.am
* AC_LIBTOOL_WIN32_DLL and AM_PROG_LIBTOOL are obsolete; these have been
superceded by LT_INIT
* Don't rebuild docs by default, as this requires GNU Make (as
implemented)
* Check for uint32_t as some platforms don't provide it
* Check for some more functions, and undefine HAVE_MMAP if we don't also
HAVE_MUNMAP (one system I tested on actually needed this)
* Changed THREADS_W32 from a filename insert into an Automake conditional
* The "Copyright" file will not be in the current directory if builddir !=
srcdir
doc/Makefile.am:
* EXTRA_DIST cannot use wildcards when they refer to generated files; this
breaks dependencies. What I did was define EXTRA_DIST_wc, which uses GNU
Make $(wildcard) directives to build up a list of files, and EXTRA_DIST,
as a literal expansion of EXTRA_DIST_wc. I also added a new rule,
"check-extra-dist", to simplify checking that the two variables are
equivalent. (Note that this works only when builddir == srcdir)
(I can implement this differently if desired; this is just one way of
doing it)
* Don't define an "all" target; this steps on Automake's toes
* Fixed up the "libxml2-api.xml ..." rule by using $(wildcard) for
dependencies (as Make doesn't process the wildcards otherwise) and
qualifying appropriate files with $(srcdir)
(Note that $(srcdir) is not needed in the dependencies, thanks to VPATH,
which we can count on as this is GNU-Make-only code anyway)
doc/devhelp/Makefile.am:
* Qualified appropriate files with $(srcdir)
* Added an "uninstall-local" rule so that "make distcheck" passes
doc/examples/Makefile.am:
* Rather than use a wildcard that doesn't work, use a substitution that
most Make programs can handle
doc/examples/index.py:
* Do the same here
include/libxml/nanoftp.h:
* Some platforms (e.g. MSVC 6) already #define INVALID_SOCKET:
user@host:/cygdrive/c/Program Files/Microsoft Visual Studio/VC98/\
Include$ grep -R INVALID_SOCKET .
./WINSOCK.H:#define INVALID_SOCKET (SOCKET)(~0)
./WINSOCK2.H:#define INVALID_SOCKET (SOCKET)(~0)
include/libxml/xmlversion.h.in:
* Support ancient GCCs (I was actually able to build the library with 2.5
but for this bit)
python/Makefile.am:
* Expanded CLEANFILES to allow "make distcheck" to pass
python/tests/Makefile.am:
* Define CLEANFILES instead of a "clean" rule, and added tmp.xml to allow
"make distcheck" to pass
testRelax.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H (as some
systems have the header but not the function)
testSchemas.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H
testapi.c:
* Don't use putenv() if it's not available
threads.c:
* This fixes the following build error on Solaris 8:
libtool: compile: cc -DHAVE_CONFIG_H -I. -I./include -I./include \
-D_REENTRANT -D__EXTENSIONS__ -D_REENTRANT -Dsparc -Xa -mt -v \
-xarch=v9 -xcrossfile -xO5 -c threads.c -KPIC -DPIC -o threads.o
"threads.c", line 442: controlling expressions must have scalar type
"threads.c", line 512: controlling expressions must have scalar type
cc: acomp failed for threads.c
*** Error code 1
trio.c:
* Define isascii() if the system doesn't provide it
trio.h:
* The trio library's HAVE_CONFIG_H header is not the same as LibXML2's
HAVE_CONFIG_H header; this change is needed to avoid a double-inclusion
win32/configure.js:
* Added support for the LZMA compression option
win32/Makefile.{bcb,mingw,msvc}:
* Added appropriate bits to support WITH_LZMA=1
* Install the header files under $(INCPREFIX)\libxml2\libxml instead of
$(INCPREFIX)\libxml, to mirror the install location on Unix+Autotools
xml2-config.in:
* @MODULE_PLATFORM_LIBS@ (usually "-ldl") needs to be in there in order for
`xml2-config --libs` to provide a complete set of dependencies
xmllint.c:
* Use HAVE_MMAP instead of the less-explicit HAVE_SYS_MMAN_H
2012-08-06 11:32:54 +08:00
|
|
|
xmllint_LDADD= $(RDL_LIBS) $(LDADDS)
|
1998-07-24 19:24:09 +00:00
|
|
|
|
2001-08-20 00:08:40 +00:00
|
|
|
xmlcatalog_SOURCES=xmlcatalog.c
|
2023-05-05 17:34:57 -04:00
|
|
|
xmlcatalog_CFLAGS = $(AM_CFLAGS) $(RDL_CFLAGS) $(ICONV_CFLAGS)
|
2001-08-20 00:08:40 +00:00
|
|
|
xmlcatalog_DEPENDENCIES = $(DEPS)
|
Various "make distcheck" and portability fixups
Makefile.am:
* Don't use @VAR@, use $(VAR). Autoconf's AC_SUBST provides us the Make
variable, it allows overriding the value at the command line, and
(notably) it avoids a Make parse error in the libxml2_la_LDFLAGS
assignment when @MODULE_PLATFORM_LIBS@ is empty
* Changed how the THREADS_W32 mechanism switches the build between
testThreads.c and testThreadsWin32.c as appropriate; using AM_CONDITIONAL
allows this to work cleanly and plays well with dependencies
* testapi.c should be specified as BUILT_SOURCES
* Create symlinks to the test/ and result/ subdirs so that the runtests
target is usable in out-of-source-tree builds
* Don't do MAKEFLAGS+=--silent as this is not portable to non-GNU Makes
* Fixed incorrect find(1) syntax in the "cleanup" rule, and doing "rm -f"
instead of just "rm" is good form
* (DIST)CLEANFILES needed a bit more coverage to allow "make distcheck" to
pass
configure.in:
* Need AC_PROG_LN_S to create test/ and result/ symlinks in Makefile.am
* AC_LIBTOOL_WIN32_DLL and AM_PROG_LIBTOOL are obsolete; these have been
superceded by LT_INIT
* Don't rebuild docs by default, as this requires GNU Make (as
implemented)
* Check for uint32_t as some platforms don't provide it
* Check for some more functions, and undefine HAVE_MMAP if we don't also
HAVE_MUNMAP (one system I tested on actually needed this)
* Changed THREADS_W32 from a filename insert into an Automake conditional
* The "Copyright" file will not be in the current directory if builddir !=
srcdir
doc/Makefile.am:
* EXTRA_DIST cannot use wildcards when they refer to generated files; this
breaks dependencies. What I did was define EXTRA_DIST_wc, which uses GNU
Make $(wildcard) directives to build up a list of files, and EXTRA_DIST,
as a literal expansion of EXTRA_DIST_wc. I also added a new rule,
"check-extra-dist", to simplify checking that the two variables are
equivalent. (Note that this works only when builddir == srcdir)
(I can implement this differently if desired; this is just one way of
doing it)
* Don't define an "all" target; this steps on Automake's toes
* Fixed up the "libxml2-api.xml ..." rule by using $(wildcard) for
dependencies (as Make doesn't process the wildcards otherwise) and
qualifying appropriate files with $(srcdir)
(Note that $(srcdir) is not needed in the dependencies, thanks to VPATH,
which we can count on as this is GNU-Make-only code anyway)
doc/devhelp/Makefile.am:
* Qualified appropriate files with $(srcdir)
* Added an "uninstall-local" rule so that "make distcheck" passes
doc/examples/Makefile.am:
* Rather than use a wildcard that doesn't work, use a substitution that
most Make programs can handle
doc/examples/index.py:
* Do the same here
include/libxml/nanoftp.h:
* Some platforms (e.g. MSVC 6) already #define INVALID_SOCKET:
user@host:/cygdrive/c/Program Files/Microsoft Visual Studio/VC98/\
Include$ grep -R INVALID_SOCKET .
./WINSOCK.H:#define INVALID_SOCKET (SOCKET)(~0)
./WINSOCK2.H:#define INVALID_SOCKET (SOCKET)(~0)
include/libxml/xmlversion.h.in:
* Support ancient GCCs (I was actually able to build the library with 2.5
but for this bit)
python/Makefile.am:
* Expanded CLEANFILES to allow "make distcheck" to pass
python/tests/Makefile.am:
* Define CLEANFILES instead of a "clean" rule, and added tmp.xml to allow
"make distcheck" to pass
testRelax.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H (as some
systems have the header but not the function)
testSchemas.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H
testapi.c:
* Don't use putenv() if it's not available
threads.c:
* This fixes the following build error on Solaris 8:
libtool: compile: cc -DHAVE_CONFIG_H -I. -I./include -I./include \
-D_REENTRANT -D__EXTENSIONS__ -D_REENTRANT -Dsparc -Xa -mt -v \
-xarch=v9 -xcrossfile -xO5 -c threads.c -KPIC -DPIC -o threads.o
"threads.c", line 442: controlling expressions must have scalar type
"threads.c", line 512: controlling expressions must have scalar type
cc: acomp failed for threads.c
*** Error code 1
trio.c:
* Define isascii() if the system doesn't provide it
trio.h:
* The trio library's HAVE_CONFIG_H header is not the same as LibXML2's
HAVE_CONFIG_H header; this change is needed to avoid a double-inclusion
win32/configure.js:
* Added support for the LZMA compression option
win32/Makefile.{bcb,mingw,msvc}:
* Added appropriate bits to support WITH_LZMA=1
* Install the header files under $(INCPREFIX)\libxml2\libxml instead of
$(INCPREFIX)\libxml, to mirror the install location on Unix+Autotools
xml2-config.in:
* @MODULE_PLATFORM_LIBS@ (usually "-ldl") needs to be in there in order for
`xml2-config --libs` to provide a complete set of dependencies
xmllint.c:
* Use HAVE_MMAP instead of the less-explicit HAVE_SYS_MMAN_H
2012-08-06 11:32:54 +08:00
|
|
|
xmlcatalog_LDADD = $(RDL_LIBS) $(LDADDS)
|
2001-05-10 14:17:55 +00:00
|
|
|
|
2005-01-04 15:10:22 +00:00
|
|
|
testModule_SOURCES=testModule.c
|
|
|
|
testModule_DEPENDENCIES = $(DEPS)
|
|
|
|
testModule_LDADD= $(LDADDS)
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = testdso.la
|
|
|
|
testdso_la_SOURCES = testdso.c
|
2022-09-02 16:45:06 +02:00
|
|
|
testdso_la_LDFLAGS = $(AM_LDFLAGS) \
|
|
|
|
-module -no-undefined -avoid-version -rpath $(libdir)
|
2005-01-04 15:10:22 +00:00
|
|
|
|
2005-01-25 23:45:06 +00:00
|
|
|
# that one forces the rebuild when "make rebuild" is run on doc/
|
|
|
|
rebuild_testapi:
|
|
|
|
-@(if [ "$(PYTHON)" != "" ] ; then \
|
|
|
|
$(PYTHON) $(srcdir)/gentest.py $(srcdir) ; fi )
|
|
|
|
|
2004-11-02 14:52:23 +00:00
|
|
|
testapi_SOURCES=testapi.c
|
|
|
|
testapi_DEPENDENCIES = $(DEPS)
|
|
|
|
testapi_LDADD= $(LDADDS)
|
|
|
|
|
2008-07-29 16:12:31 +00:00
|
|
|
runxmlconf_SOURCES=runxmlconf.c
|
|
|
|
runxmlconf_DEPENDENCIES = $(DEPS)
|
|
|
|
runxmlconf_LDADD= $(LDADDS)
|
|
|
|
|
2022-04-04 05:19:33 +02:00
|
|
|
check-local:
|
Various "make distcheck" and portability fixups
Makefile.am:
* Don't use @VAR@, use $(VAR). Autoconf's AC_SUBST provides us the Make
variable, it allows overriding the value at the command line, and
(notably) it avoids a Make parse error in the libxml2_la_LDFLAGS
assignment when @MODULE_PLATFORM_LIBS@ is empty
* Changed how the THREADS_W32 mechanism switches the build between
testThreads.c and testThreadsWin32.c as appropriate; using AM_CONDITIONAL
allows this to work cleanly and plays well with dependencies
* testapi.c should be specified as BUILT_SOURCES
* Create symlinks to the test/ and result/ subdirs so that the runtests
target is usable in out-of-source-tree builds
* Don't do MAKEFLAGS+=--silent as this is not portable to non-GNU Makes
* Fixed incorrect find(1) syntax in the "cleanup" rule, and doing "rm -f"
instead of just "rm" is good form
* (DIST)CLEANFILES needed a bit more coverage to allow "make distcheck" to
pass
configure.in:
* Need AC_PROG_LN_S to create test/ and result/ symlinks in Makefile.am
* AC_LIBTOOL_WIN32_DLL and AM_PROG_LIBTOOL are obsolete; these have been
superceded by LT_INIT
* Don't rebuild docs by default, as this requires GNU Make (as
implemented)
* Check for uint32_t as some platforms don't provide it
* Check for some more functions, and undefine HAVE_MMAP if we don't also
HAVE_MUNMAP (one system I tested on actually needed this)
* Changed THREADS_W32 from a filename insert into an Automake conditional
* The "Copyright" file will not be in the current directory if builddir !=
srcdir
doc/Makefile.am:
* EXTRA_DIST cannot use wildcards when they refer to generated files; this
breaks dependencies. What I did was define EXTRA_DIST_wc, which uses GNU
Make $(wildcard) directives to build up a list of files, and EXTRA_DIST,
as a literal expansion of EXTRA_DIST_wc. I also added a new rule,
"check-extra-dist", to simplify checking that the two variables are
equivalent. (Note that this works only when builddir == srcdir)
(I can implement this differently if desired; this is just one way of
doing it)
* Don't define an "all" target; this steps on Automake's toes
* Fixed up the "libxml2-api.xml ..." rule by using $(wildcard) for
dependencies (as Make doesn't process the wildcards otherwise) and
qualifying appropriate files with $(srcdir)
(Note that $(srcdir) is not needed in the dependencies, thanks to VPATH,
which we can count on as this is GNU-Make-only code anyway)
doc/devhelp/Makefile.am:
* Qualified appropriate files with $(srcdir)
* Added an "uninstall-local" rule so that "make distcheck" passes
doc/examples/Makefile.am:
* Rather than use a wildcard that doesn't work, use a substitution that
most Make programs can handle
doc/examples/index.py:
* Do the same here
include/libxml/nanoftp.h:
* Some platforms (e.g. MSVC 6) already #define INVALID_SOCKET:
user@host:/cygdrive/c/Program Files/Microsoft Visual Studio/VC98/\
Include$ grep -R INVALID_SOCKET .
./WINSOCK.H:#define INVALID_SOCKET (SOCKET)(~0)
./WINSOCK2.H:#define INVALID_SOCKET (SOCKET)(~0)
include/libxml/xmlversion.h.in:
* Support ancient GCCs (I was actually able to build the library with 2.5
but for this bit)
python/Makefile.am:
* Expanded CLEANFILES to allow "make distcheck" to pass
python/tests/Makefile.am:
* Define CLEANFILES instead of a "clean" rule, and added tmp.xml to allow
"make distcheck" to pass
testRelax.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H (as some
systems have the header but not the function)
testSchemas.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H
testapi.c:
* Don't use putenv() if it's not available
threads.c:
* This fixes the following build error on Solaris 8:
libtool: compile: cc -DHAVE_CONFIG_H -I. -I./include -I./include \
-D_REENTRANT -D__EXTENSIONS__ -D_REENTRANT -Dsparc -Xa -mt -v \
-xarch=v9 -xcrossfile -xO5 -c threads.c -KPIC -DPIC -o threads.o
"threads.c", line 442: controlling expressions must have scalar type
"threads.c", line 512: controlling expressions must have scalar type
cc: acomp failed for threads.c
*** Error code 1
trio.c:
* Define isascii() if the system doesn't provide it
trio.h:
* The trio library's HAVE_CONFIG_H header is not the same as LibXML2's
HAVE_CONFIG_H header; this change is needed to avoid a double-inclusion
win32/configure.js:
* Added support for the LZMA compression option
win32/Makefile.{bcb,mingw,msvc}:
* Added appropriate bits to support WITH_LZMA=1
* Install the header files under $(INCPREFIX)\libxml2\libxml instead of
$(INCPREFIX)\libxml, to mirror the install location on Unix+Autotools
xml2-config.in:
* @MODULE_PLATFORM_LIBS@ (usually "-ldl") needs to be in there in order for
`xml2-config --libs` to provide a complete set of dependencies
xmllint.c:
* Use HAVE_MMAP instead of the less-explicit HAVE_SYS_MMAN_H
2012-08-06 11:32:54 +08:00
|
|
|
[ -d test ] || $(LN_S) $(srcdir)/test .
|
|
|
|
[ -d result ] || $(LN_S) $(srcdir)/result .
|
2022-04-04 05:19:33 +02:00
|
|
|
$(CHECKER) ./runtest$(EXEEXT)
|
|
|
|
$(CHECKER) ./testrecurse$(EXEEXT)
|
2022-12-08 18:38:45 +01:00
|
|
|
$(CHECKER) ./testapi$(EXEEXT)
|
2022-04-04 05:19:33 +02:00
|
|
|
$(CHECKER) ./testchar$(EXEEXT)
|
|
|
|
$(CHECKER) ./testdict$(EXEEXT)
|
2023-10-22 13:56:55 +02:00
|
|
|
$(CHECKER) ./testparser$(EXEEXT)
|
2022-04-04 05:19:33 +02:00
|
|
|
$(CHECKER) ./testModule$(EXEEXT)
|
|
|
|
$(CHECKER) ./runxmlconf$(EXEEXT)
|
2022-12-08 00:24:53 +01:00
|
|
|
$(CHECKER) ./runsuite$(EXEEXT)
|
2022-04-04 05:19:33 +02:00
|
|
|
|
|
|
|
# Compatibility name of the check target
|
|
|
|
runtests: check
|
|
|
|
|
|
|
|
check-valgrind valgrind:
|
2008-08-08 12:14:37 +00:00
|
|
|
@echo '## Running the regression tests under Valgrind'
|
|
|
|
@echo '## Go get a cup of coffee it is gonna take a while ...'
|
2022-04-04 05:19:33 +02:00
|
|
|
$(MAKE) CHECKER='valgrind -q' check
|
2008-08-08 12:14:37 +00:00
|
|
|
|
2016-05-04 12:33:32 +08:00
|
|
|
asan:
|
|
|
|
@echo '## rebuilding for ASAN'
|
|
|
|
./configure CFLAGS="-fsanitize=address,undefined -Wformat -Werror=format-security -Werror=array-bounds -g" CXXFLAGS="-fsanitize=address,undefined -Wformat -Werror=format-security -Werror=array-bounds -g" LDFLAGS="-fsanitize=address,undefined" CC="clang" CXX="clang++" --disable-shared ; OptimOff ; $(MAKE) clean ; $(MAKE)
|
|
|
|
|
2022-04-04 05:57:07 +02:00
|
|
|
# Old test suite. This should be ported to C.
|
2022-09-01 05:53:51 +02:00
|
|
|
|
|
|
|
OLD_TESTS = Timingtests
|
|
|
|
if WITH_CATALOG_SOURCES
|
|
|
|
OLD_TESTS += Catatests
|
|
|
|
endif
|
|
|
|
if WITH_DEBUG_SOURCES
|
|
|
|
OLD_TESTS += Scripttests
|
|
|
|
endif
|
|
|
|
if WITH_SCHEMAS_SOURCES
|
|
|
|
if WITH_PYTHON
|
|
|
|
OLD_TESTS += RelaxNGPythonTests SchemasPythonTests
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if WITH_SCHEMATRON_SOURCES
|
|
|
|
OLD_TESTS += Schematrontests
|
|
|
|
endif
|
|
|
|
if WITH_VALID_SOURCES
|
|
|
|
OLD_TESTS += VTimingtests
|
|
|
|
endif
|
|
|
|
|
|
|
|
tests: $(OLD_TESTS)
|
1999-06-02 17:44:04 +00:00
|
|
|
|
2002-02-08 14:20:35 +00:00
|
|
|
Scripttests : xmllint$(EXEEXT)
|
2001-07-09 16:01:19 +00:00
|
|
|
@echo "## Scripts regression tests"
|
|
|
|
@echo "## Some of the base computations may be different if srcdir != ."
|
2002-01-24 15:02:46 +00:00
|
|
|
-@(for i in $(srcdir)/test/scripts/*.script ; do \
|
2001-07-09 16:01:19 +00:00
|
|
|
name=`basename $$i .script`; \
|
|
|
|
xml=$(srcdir)/test/scripts/`basename $$i .script`.xml; \
|
|
|
|
if [ -f $$xml ] ; then \
|
|
|
|
if [ ! -f $(srcdir)/result/scripts/$$name ] ; then \
|
|
|
|
echo New test file $$name ; \
|
2004-08-16 00:39:03 +00:00
|
|
|
$(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > $(srcdir)/result/scripts/$$name 2> $(srcdir)/result/scripts/$$name.err ; \
|
2001-07-09 16:01:19 +00:00
|
|
|
else \
|
2004-08-16 00:39:03 +00:00
|
|
|
log=`$(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > result.$$name 2> result.$$name.err ; \
|
|
|
|
diff $(srcdir)/result/scripts/$$name result.$$name ; \
|
|
|
|
diff $(srcdir)/result/scripts/$$name.err result.$$name.err` ; \
|
2017-05-26 23:01:54 +02:00
|
|
|
if [ -n "$$log" ] ; then echo $$name result ; echo "$$log" ; fi ; \
|
2004-08-16 00:39:03 +00:00
|
|
|
rm result.$$name result.$$name.err ; \
|
2001-07-09 16:01:19 +00:00
|
|
|
fi ; fi ; done)
|
|
|
|
|
2002-02-08 14:20:35 +00:00
|
|
|
Catatests : xmlcatalog$(EXEEXT)
|
2001-08-21 10:56:31 +00:00
|
|
|
@echo "## Catalog regression tests"
|
2002-01-24 15:02:46 +00:00
|
|
|
-@(for i in $(srcdir)/test/catalogs/*.script ; do \
|
2001-08-21 10:56:31 +00:00
|
|
|
name=`basename $$i .script`; \
|
|
|
|
xml=$(srcdir)/test/catalogs/`basename $$i .script`.xml; \
|
|
|
|
if [ -f $$xml ] ; then \
|
|
|
|
if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \
|
|
|
|
echo New test file $$name ; \
|
2004-06-25 05:49:08 +00:00
|
|
|
$(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i 2>&1 > $(srcdir)/result/catalogs/$$name ; \
|
2001-08-21 10:56:31 +00:00
|
|
|
else \
|
2003-10-02 22:28:19 +00:00
|
|
|
log=`$(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i 2>&1 > result.$$name ; \
|
|
|
|
diff $(srcdir)/result/catalogs/$$name result.$$name` ; \
|
2017-05-26 23:01:54 +02:00
|
|
|
if [ -n "$$log" ] ; then echo $$name result ; echo "$$log" ; fi ; \
|
2001-08-21 10:56:31 +00:00
|
|
|
rm result.$$name ; \
|
|
|
|
fi ; fi ; done)
|
2002-01-24 15:02:46 +00:00
|
|
|
-@(for i in $(srcdir)/test/catalogs/*.script ; do \
|
2001-11-06 15:24:37 +00:00
|
|
|
name=`basename $$i .script`; \
|
|
|
|
sgml=$(srcdir)/test/catalogs/`basename $$i .script`.sgml; \
|
|
|
|
if [ -f $$sgml ] ; then \
|
|
|
|
if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \
|
|
|
|
echo New test file $$name ; \
|
2002-03-19 14:36:46 +00:00
|
|
|
$(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > $(srcdir)/result/catalogs/$$name ; \
|
2001-11-06 15:24:37 +00:00
|
|
|
else \
|
2003-10-02 22:28:19 +00:00
|
|
|
log=`$(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > result.$$name ; \
|
|
|
|
diff $(srcdir)/result/catalogs/$$name result.$$name` ; \
|
2017-05-26 23:01:54 +02:00
|
|
|
if [ -n "$$log" ] ; then echo $$name result ; echo "$$log" ; fi ; \
|
2001-11-06 15:24:37 +00:00
|
|
|
rm result.$$name ; \
|
|
|
|
fi ; fi ; done)
|
2003-10-02 22:28:19 +00:00
|
|
|
@echo "## Add and del operations on XML Catalogs"
|
2002-11-15 11:21:43 +00:00
|
|
|
-@($(CHECKER) $(top_builddir)/xmlcatalog --create --noout $(srcdir)/result/catalogs/mycatalog; \
|
|
|
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid sysid $(srcdir)/result/catalogs/mycatalog; \
|
|
|
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid2 sysid2 $(srcdir)/result/catalogs/mycatalog; \
|
|
|
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid3 sysid3 $(srcdir)/result/catalogs/mycatalog; \
|
|
|
|
diff result/catalogs/mycatalog.full $(srcdir)/result/catalogs/mycatalog; \
|
|
|
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid $(srcdir)/result/catalogs/mycatalog; \
|
|
|
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid3 $(srcdir)/result/catalogs/mycatalog; \
|
|
|
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid2 $(srcdir)/result/catalogs/mycatalog; \
|
|
|
|
diff result/catalogs/mycatalog.empty $(srcdir)/result/catalogs/mycatalog; \
|
|
|
|
rm -f $(srcdir)/result/catalogs/mycatalog)
|
2001-08-21 10:56:31 +00:00
|
|
|
|
2008-01-11 07:19:24 +00:00
|
|
|
dba100000.xml: dbgenattr.pl
|
2003-09-17 22:33:22 +00:00
|
|
|
@echo "## generating dba100000.xml"
|
2008-01-11 07:19:24 +00:00
|
|
|
@($(PERL) $(top_srcdir)/dbgenattr.pl 100000 > dba100000.xml)
|
2003-09-17 22:33:22 +00:00
|
|
|
|
2008-01-11 07:19:24 +00:00
|
|
|
Timingtests: xmllint$(EXEEXT) dba100000.xml
|
2003-09-17 22:33:22 +00:00
|
|
|
@echo "## Timing tests to try to detect performance"
|
|
|
|
@echo "## as well a memory usage breakage when streaming"
|
2003-09-24 21:23:56 +00:00
|
|
|
@echo "## 1/ using the file interface"
|
|
|
|
@echo "## 2/ using the memory interface"
|
|
|
|
@echo "## 3/ repeated DOM parsing"
|
|
|
|
@echo "## 4/ repeated DOM validation"
|
2008-01-11 07:19:24 +00:00
|
|
|
-@($(top_builddir)/xmllint --stream --timing dba100000.xml; \
|
2003-09-18 22:03:46 +00:00
|
|
|
if [ "$$MEM" != "" ] ; then echo Using $$MEM bytes ; fi ; \
|
2003-09-17 22:33:22 +00:00
|
|
|
exit 0)
|
2008-01-11 07:19:24 +00:00
|
|
|
-@($(top_builddir)/xmllint --stream --timing --memory dba100000.xml; \
|
2003-09-18 22:03:46 +00:00
|
|
|
if [ "$$MEM" != "" ] ; then echo Using $$MEM bytes ; fi ; \
|
2003-09-17 22:33:22 +00:00
|
|
|
exit 0)
|
2004-02-26 09:57:32 +00:00
|
|
|
-@($(top_builddir)/xmllint --noout --timing --repeat $(srcdir)/test/valid/REC-xml-19980210.xml; \
|
2003-09-24 21:23:56 +00:00
|
|
|
if [ "$$MEM" != "" ] ; then echo Using $$MEM bytes ; fi ; \
|
|
|
|
exit 0)
|
2003-09-28 18:58:27 +00:00
|
|
|
|
|
|
|
VTimingtests: xmllint$(EXEEXT)
|
2004-02-26 09:57:32 +00:00
|
|
|
-@($(top_builddir)/xmllint --noout --timing --valid --repeat $(srcdir)/test/valid/REC-xml-19980210.xml; \
|
2003-09-24 21:23:56 +00:00
|
|
|
if [ "$$MEM" != "" ] ; then echo Using $$MEM bytes ; fi ; \
|
|
|
|
exit 0)
|
2003-09-17 22:33:22 +00:00
|
|
|
|
2005-07-31 12:17:24 +00:00
|
|
|
Schematrontests: xmllint$(EXEEXT)
|
|
|
|
@echo "## Schematron regression tests"
|
|
|
|
-@(for i in $(srcdir)/test/schematron/*.sct ; do \
|
|
|
|
name=`basename $$i | sed 's+\.sct++'`; \
|
|
|
|
for j in $(srcdir)/test/schematron/"$$name"_*.xml ; do \
|
|
|
|
if [ -f $$j ] ; then \
|
|
|
|
xno=`basename $$j | sed 's+.*_\(.*\).xml+\1+'`; \
|
|
|
|
if [ ! -f $(srcdir)/result/schematron/"$$name"_"$$xno" ]; \
|
|
|
|
then \
|
|
|
|
echo New test file "$$name"_"$$xno" ; \
|
|
|
|
$(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --schematron $$i $$j \
|
|
|
|
> $(srcdir)/result/schematron/"$$name"_"$$xno" \
|
|
|
|
2> $(srcdir)/result/schematron/"$$name"_"$$xno".err; \
|
|
|
|
else \
|
|
|
|
log=`$(CHECKER) $(top_builddir)/xmllint$(EXEEXT) --schematron $$i $$j \
|
|
|
|
> res.$$name 2> err.$$name;\
|
|
|
|
diff $(srcdir)/result/schematron/"$$name"_"$$xno" \
|
|
|
|
res.$$name;\
|
|
|
|
diff $(srcdir)/result/schematron/"$$name"_"$$xno".err \
|
|
|
|
err.$$name | grep -v "error detected at";\
|
|
|
|
grep Unimplemented err.$$name`; \
|
2017-05-26 23:01:54 +02:00
|
|
|
if [ -n "$$log" ] ; then echo "$$name"_"$$xno" result ; echo "$$log" ; fi ; \
|
2005-07-31 12:17:24 +00:00
|
|
|
rm res.$$name err.$$name ; \
|
|
|
|
fi ; fi ; \
|
|
|
|
done; done)
|
|
|
|
|
2004-03-22 19:10:02 +00:00
|
|
|
RelaxNGPythonTests:
|
|
|
|
@(if [ -x $(PYTHON) ] ; then \
|
2004-05-10 00:40:51 +00:00
|
|
|
PYTHONPATH=$(top_builddir)/python:$(top_builddir)/python/.libs:$$PYTHONPATH ; \
|
2004-03-31 02:01:32 +00:00
|
|
|
export PYTHONPATH; \
|
2005-02-12 01:08:22 +00:00
|
|
|
LD_LIBRARY_PATH="$(top_builddir)/.libs:$$LD_LIBRARY_PATH" ; \
|
|
|
|
export LD_LIBRARY_PATH; \
|
2004-03-22 19:10:02 +00:00
|
|
|
echo "## Relax-NG Python based test suite 1" ; \
|
2004-03-23 12:32:32 +00:00
|
|
|
$(CHECKER) $(PYTHON) $(srcdir)/check-relaxng-test-suite.py ; \
|
2004-03-22 19:10:02 +00:00
|
|
|
echo "## Relax-NG Python based test suite 2" ; \
|
2004-03-23 12:32:32 +00:00
|
|
|
$(CHECKER) $(PYTHON) $(srcdir)/check-relaxng-test-suite2.py ; \
|
2004-03-22 19:10:02 +00:00
|
|
|
fi)
|
|
|
|
|
|
|
|
SchemasPythonTests:
|
|
|
|
@(if [ -x $(PYTHON) ] ; then \
|
2004-05-10 00:40:51 +00:00
|
|
|
PYTHONPATH=$(top_builddir)/python:$(top_builddir)/python/.libs:$$PYTHONPATH; \
|
2004-03-31 02:01:32 +00:00
|
|
|
export PYTHONPATH; \
|
2005-02-12 01:08:22 +00:00
|
|
|
LD_LIBRARY_PATH="$(top_builddir)/.libs:$$LD_LIBRARY_PATH" ; \
|
|
|
|
export LD_LIBRARY_PATH; \
|
2004-03-22 19:10:02 +00:00
|
|
|
echo "## XML Schemas datatypes Python based test suite" ; \
|
2005-12-05 15:32:28 +00:00
|
|
|
echo "## It is normal to see 11 errors reported" ; \
|
2004-03-23 12:32:32 +00:00
|
|
|
$(CHECKER) $(PYTHON) $(srcdir)/check-xsddata-test-suite.py ; \
|
2004-03-22 19:10:02 +00:00
|
|
|
fi)
|
Various "make distcheck" and portability fixups
Makefile.am:
* Don't use @VAR@, use $(VAR). Autoconf's AC_SUBST provides us the Make
variable, it allows overriding the value at the command line, and
(notably) it avoids a Make parse error in the libxml2_la_LDFLAGS
assignment when @MODULE_PLATFORM_LIBS@ is empty
* Changed how the THREADS_W32 mechanism switches the build between
testThreads.c and testThreadsWin32.c as appropriate; using AM_CONDITIONAL
allows this to work cleanly and plays well with dependencies
* testapi.c should be specified as BUILT_SOURCES
* Create symlinks to the test/ and result/ subdirs so that the runtests
target is usable in out-of-source-tree builds
* Don't do MAKEFLAGS+=--silent as this is not portable to non-GNU Makes
* Fixed incorrect find(1) syntax in the "cleanup" rule, and doing "rm -f"
instead of just "rm" is good form
* (DIST)CLEANFILES needed a bit more coverage to allow "make distcheck" to
pass
configure.in:
* Need AC_PROG_LN_S to create test/ and result/ symlinks in Makefile.am
* AC_LIBTOOL_WIN32_DLL and AM_PROG_LIBTOOL are obsolete; these have been
superceded by LT_INIT
* Don't rebuild docs by default, as this requires GNU Make (as
implemented)
* Check for uint32_t as some platforms don't provide it
* Check for some more functions, and undefine HAVE_MMAP if we don't also
HAVE_MUNMAP (one system I tested on actually needed this)
* Changed THREADS_W32 from a filename insert into an Automake conditional
* The "Copyright" file will not be in the current directory if builddir !=
srcdir
doc/Makefile.am:
* EXTRA_DIST cannot use wildcards when they refer to generated files; this
breaks dependencies. What I did was define EXTRA_DIST_wc, which uses GNU
Make $(wildcard) directives to build up a list of files, and EXTRA_DIST,
as a literal expansion of EXTRA_DIST_wc. I also added a new rule,
"check-extra-dist", to simplify checking that the two variables are
equivalent. (Note that this works only when builddir == srcdir)
(I can implement this differently if desired; this is just one way of
doing it)
* Don't define an "all" target; this steps on Automake's toes
* Fixed up the "libxml2-api.xml ..." rule by using $(wildcard) for
dependencies (as Make doesn't process the wildcards otherwise) and
qualifying appropriate files with $(srcdir)
(Note that $(srcdir) is not needed in the dependencies, thanks to VPATH,
which we can count on as this is GNU-Make-only code anyway)
doc/devhelp/Makefile.am:
* Qualified appropriate files with $(srcdir)
* Added an "uninstall-local" rule so that "make distcheck" passes
doc/examples/Makefile.am:
* Rather than use a wildcard that doesn't work, use a substitution that
most Make programs can handle
doc/examples/index.py:
* Do the same here
include/libxml/nanoftp.h:
* Some platforms (e.g. MSVC 6) already #define INVALID_SOCKET:
user@host:/cygdrive/c/Program Files/Microsoft Visual Studio/VC98/\
Include$ grep -R INVALID_SOCKET .
./WINSOCK.H:#define INVALID_SOCKET (SOCKET)(~0)
./WINSOCK2.H:#define INVALID_SOCKET (SOCKET)(~0)
include/libxml/xmlversion.h.in:
* Support ancient GCCs (I was actually able to build the library with 2.5
but for this bit)
python/Makefile.am:
* Expanded CLEANFILES to allow "make distcheck" to pass
python/tests/Makefile.am:
* Define CLEANFILES instead of a "clean" rule, and added tmp.xml to allow
"make distcheck" to pass
testRelax.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H (as some
systems have the header but not the function)
testSchemas.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H
testapi.c:
* Don't use putenv() if it's not available
threads.c:
* This fixes the following build error on Solaris 8:
libtool: compile: cc -DHAVE_CONFIG_H -I. -I./include -I./include \
-D_REENTRANT -D__EXTENSIONS__ -D_REENTRANT -Dsparc -Xa -mt -v \
-xarch=v9 -xcrossfile -xO5 -c threads.c -KPIC -DPIC -o threads.o
"threads.c", line 442: controlling expressions must have scalar type
"threads.c", line 512: controlling expressions must have scalar type
cc: acomp failed for threads.c
*** Error code 1
trio.c:
* Define isascii() if the system doesn't provide it
trio.h:
* The trio library's HAVE_CONFIG_H header is not the same as LibXML2's
HAVE_CONFIG_H header; this change is needed to avoid a double-inclusion
win32/configure.js:
* Added support for the LZMA compression option
win32/Makefile.{bcb,mingw,msvc}:
* Added appropriate bits to support WITH_LZMA=1
* Install the header files under $(INCPREFIX)\libxml2\libxml instead of
$(INCPREFIX)\libxml, to mirror the install location on Unix+Autotools
xml2-config.in:
* @MODULE_PLATFORM_LIBS@ (usually "-ldl") needs to be in there in order for
`xml2-config --libs` to provide a complete set of dependencies
xmllint.c:
* Use HAVE_MMAP instead of the less-explicit HAVE_SYS_MMAN_H
2012-08-06 11:32:54 +08:00
|
|
|
@(if [ -x $(PYTHON) -a -d xstc ] ; then cd xstc ; $(MAKE) CHECKER="$(CHECKER)" pytests ; fi)
|
2004-03-22 19:10:02 +00:00
|
|
|
|
2003-11-18 23:52:38 +00:00
|
|
|
cleanup:
|
|
|
|
-@(find . -name .\#\* -exec rm {} \;)
|
Various "make distcheck" and portability fixups
Makefile.am:
* Don't use @VAR@, use $(VAR). Autoconf's AC_SUBST provides us the Make
variable, it allows overriding the value at the command line, and
(notably) it avoids a Make parse error in the libxml2_la_LDFLAGS
assignment when @MODULE_PLATFORM_LIBS@ is empty
* Changed how the THREADS_W32 mechanism switches the build between
testThreads.c and testThreadsWin32.c as appropriate; using AM_CONDITIONAL
allows this to work cleanly and plays well with dependencies
* testapi.c should be specified as BUILT_SOURCES
* Create symlinks to the test/ and result/ subdirs so that the runtests
target is usable in out-of-source-tree builds
* Don't do MAKEFLAGS+=--silent as this is not portable to non-GNU Makes
* Fixed incorrect find(1) syntax in the "cleanup" rule, and doing "rm -f"
instead of just "rm" is good form
* (DIST)CLEANFILES needed a bit more coverage to allow "make distcheck" to
pass
configure.in:
* Need AC_PROG_LN_S to create test/ and result/ symlinks in Makefile.am
* AC_LIBTOOL_WIN32_DLL and AM_PROG_LIBTOOL are obsolete; these have been
superceded by LT_INIT
* Don't rebuild docs by default, as this requires GNU Make (as
implemented)
* Check for uint32_t as some platforms don't provide it
* Check for some more functions, and undefine HAVE_MMAP if we don't also
HAVE_MUNMAP (one system I tested on actually needed this)
* Changed THREADS_W32 from a filename insert into an Automake conditional
* The "Copyright" file will not be in the current directory if builddir !=
srcdir
doc/Makefile.am:
* EXTRA_DIST cannot use wildcards when they refer to generated files; this
breaks dependencies. What I did was define EXTRA_DIST_wc, which uses GNU
Make $(wildcard) directives to build up a list of files, and EXTRA_DIST,
as a literal expansion of EXTRA_DIST_wc. I also added a new rule,
"check-extra-dist", to simplify checking that the two variables are
equivalent. (Note that this works only when builddir == srcdir)
(I can implement this differently if desired; this is just one way of
doing it)
* Don't define an "all" target; this steps on Automake's toes
* Fixed up the "libxml2-api.xml ..." rule by using $(wildcard) for
dependencies (as Make doesn't process the wildcards otherwise) and
qualifying appropriate files with $(srcdir)
(Note that $(srcdir) is not needed in the dependencies, thanks to VPATH,
which we can count on as this is GNU-Make-only code anyway)
doc/devhelp/Makefile.am:
* Qualified appropriate files with $(srcdir)
* Added an "uninstall-local" rule so that "make distcheck" passes
doc/examples/Makefile.am:
* Rather than use a wildcard that doesn't work, use a substitution that
most Make programs can handle
doc/examples/index.py:
* Do the same here
include/libxml/nanoftp.h:
* Some platforms (e.g. MSVC 6) already #define INVALID_SOCKET:
user@host:/cygdrive/c/Program Files/Microsoft Visual Studio/VC98/\
Include$ grep -R INVALID_SOCKET .
./WINSOCK.H:#define INVALID_SOCKET (SOCKET)(~0)
./WINSOCK2.H:#define INVALID_SOCKET (SOCKET)(~0)
include/libxml/xmlversion.h.in:
* Support ancient GCCs (I was actually able to build the library with 2.5
but for this bit)
python/Makefile.am:
* Expanded CLEANFILES to allow "make distcheck" to pass
python/tests/Makefile.am:
* Define CLEANFILES instead of a "clean" rule, and added tmp.xml to allow
"make distcheck" to pass
testRelax.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H (as some
systems have the header but not the function)
testSchemas.c:
* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H
testapi.c:
* Don't use putenv() if it's not available
threads.c:
* This fixes the following build error on Solaris 8:
libtool: compile: cc -DHAVE_CONFIG_H -I. -I./include -I./include \
-D_REENTRANT -D__EXTENSIONS__ -D_REENTRANT -Dsparc -Xa -mt -v \
-xarch=v9 -xcrossfile -xO5 -c threads.c -KPIC -DPIC -o threads.o
"threads.c", line 442: controlling expressions must have scalar type
"threads.c", line 512: controlling expressions must have scalar type
cc: acomp failed for threads.c
*** Error code 1
trio.c:
* Define isascii() if the system doesn't provide it
trio.h:
* The trio library's HAVE_CONFIG_H header is not the same as LibXML2's
HAVE_CONFIG_H header; this change is needed to avoid a double-inclusion
win32/configure.js:
* Added support for the LZMA compression option
win32/Makefile.{bcb,mingw,msvc}:
* Added appropriate bits to support WITH_LZMA=1
* Install the header files under $(INCPREFIX)\libxml2\libxml instead of
$(INCPREFIX)\libxml, to mirror the install location on Unix+Autotools
xml2-config.in:
* @MODULE_PLATFORM_LIBS@ (usually "-ldl") needs to be in there in order for
`xml2-config --libs` to provide a complete set of dependencies
xmllint.c:
* Use HAVE_MMAP instead of the less-explicit HAVE_SYS_MMAN_H
2012-08-06 11:32:54 +08:00
|
|
|
-@(find . -name \*.gcda -o -name \*.gcno -exec rm -f {} \;)
|
|
|
|
-@(find . -name \*.orig -o -name \*.rej -o -name \*.old -exec rm -f {} \;)
|
2003-11-18 23:52:38 +00:00
|
|
|
|
2022-08-26 17:37:09 +02:00
|
|
|
dist-hook: cleanup
|
2023-11-23 15:59:41 +01:00
|
|
|
(cd $(srcdir) ; tar -cf - --exclude .git win32 os400 test result) | (cd $(distdir); tar xf -)
|
1999-02-21 21:20:12 +00:00
|
|
|
|
2023-02-13 11:14:34 +01:00
|
|
|
CLEANFILES = runsuite.log runxmlconf.log test.out *.gcda *.gcno *.res
|
2012-09-11 13:37:30 +08:00
|
|
|
DISTCLEANFILES = COPYING missing.lst
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2022-08-29 16:13:50 +02:00
|
|
|
EXTRA_DIST = Copyright check-xml-test-suite.py gentest.py \
|
2004-03-23 12:32:32 +00:00
|
|
|
check-relaxng-test-suite.py check-relaxng-test-suite2.py \
|
|
|
|
check-xsddata-test-suite.py check-xinclude-test-suite.py \
|
2016-02-09 17:55:40 +01:00
|
|
|
libxml2-config.cmake.in autogen.sh \
|
2023-11-23 15:48:52 +01:00
|
|
|
libxml.h \
|
2022-12-21 22:24:50 +01:00
|
|
|
genUnicode.py \
|
2022-03-04 08:55:28 -08:00
|
|
|
dbgen.pl dbgenattr.pl \
|
2022-12-21 21:47:10 +01:00
|
|
|
libxml2.syms timsort.h \
|
2022-02-14 03:40:59 +01:00
|
|
|
README.zOS README.md \
|
2024-04-04 12:14:46 +02:00
|
|
|
CMakeLists.txt config.h.cmake.in libxml2-config.cmake.cmake.in \
|
|
|
|
meson.build meson_options.txt
|
2003-09-17 22:33:22 +00:00
|
|
|
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
2022-08-29 16:13:50 +02:00
|
|
|
pkgconfig_DATA = libxml-2.0.pc
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2014-10-11 21:50:41 +02:00
|
|
|
cmakedir = $(libdir)/cmake/libxml2
|
|
|
|
cmake_DATA = libxml2-config.cmake
|
|
|
|
|
2004-08-14 11:15:13 +00:00
|
|
|
tst: tst.c
|
2012-05-08 10:59:41 +08:00
|
|
|
$(CC) $(CFLAGS) -Iinclude -o tst tst.c .libs/libxml2.a -lpthread -lm -lz -llzma
|
2005-07-29 22:02:24 +00:00
|
|
|
|
|
|
|
sparse: clean
|
|
|
|
$(MAKE) CC=cgcc
|
2008-08-27 15:33:28 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Coverage support, largely borrowed from libvirt
|
|
|
|
# Both binaries comes from the lcov package in Fedora
|
|
|
|
#
|
|
|
|
LCOV = /usr/bin/lcov
|
|
|
|
GENHTML = /usr/bin/genhtml
|
|
|
|
|
|
|
|
cov: clean-cov
|
2022-09-02 16:45:06 +02:00
|
|
|
if [ "`echo $(AM_LDFLAGS) | grep coverage`" = "" ] ; then \
|
2008-08-27 15:33:28 +00:00
|
|
|
echo not configured with coverage; exit 1 ; fi
|
|
|
|
if [ ! -x $(LCOV) -o ! -x $(GENHTML) ] ; then \
|
|
|
|
echo Need $(LCOV) and $(GENHTML) excecutables; exit 1 ; fi
|
|
|
|
-@($(MAKE) check)
|
|
|
|
-@(./runsuite$(EXEEXT))
|
|
|
|
mkdir $(top_builddir)/coverage
|
|
|
|
$(LCOV) -c -o $(top_builddir)/coverage/libxml2.info.tmp -d $(top_srcdir)
|
|
|
|
$(LCOV) -r $(top_builddir)/coverage/libxml2.info.tmp -o $(top_builddir)/coverage/libxml2.info *usr*
|
|
|
|
rm $(top_builddir)/coverage/libxml2.info.tmp
|
|
|
|
$(GENHTML) -s -t "libxml2" -o $(top_builddir)/coverage --legend $(top_builddir)/coverage/libxml2.info
|
|
|
|
echo "Coverage report is in $(top_builddir)/coverage/index.html"
|
|
|
|
|
|
|
|
clean-cov:
|
|
|
|
rm -rf $(top_builddir)/coverage
|
|
|
|
|