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-03-29 13:37:16 +02:00
SUBDIRS = include . doc example fuzz xstc
i f W I T H _ P Y T H O N
SUBDIRS += python
e n d i f
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 01:42:17 +02:00
AM_CFLAGS = $( EXTRA_CFLAGS)
1999-06-22 21:49:07 +00:00
2022-04-03 20:36:38 +02:00
check_PROGRAMS = \
runsuite \
runtest \
runxmlconf \
testAutomata \
testModule \
testThreads \
testapi \
testchar \
testdict \
testlimits \
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-25 13:47:16 +02:00
nodist_bin_SCRIPTS = xml2-config
2001-02-23 17:55:21 +00:00
lib_LTLIBRARIES = libxml2.la
2022-04-03 01:42:17 +02:00
libxml2_la_CFLAGS = $( EXTRA_CFLAGS) $( THREAD_CFLAGS) $( Z_CFLAGS) $( LZMA_CFLAGS)
2022-04-03 02:20:04 +02:00
libxml2_la_LIBADD = $( XML_PRIVATE_LIBS)
2001-02-23 17:55:21 +00:00
2009-08-20 19:17:36 +02:00
i f U S E _ V E R S I O N _ S C R I P T
LIBXML2_VERSION_SCRIPT = $( VERSION_SCRIPT_FLAGS) $( srcdir) /libxml2.syms
e l s e
LIBXML2_VERSION_SCRIPT =
e n d i f
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
libxml2_la_LDFLAGS = $( CYGWIN_EXTRA_LDFLAGS) $( WIN32_EXTRA_LDFLAGS) \
$( LIBXML2_VERSION_SCRIPT) \
-version-info $( LIBXML_VERSION_INFO) \
$( MODULE_PLATFORM_LIBS)
2001-02-23 17:55:21 +00:00
2001-05-02 16:41:11 +00:00
i f W I T H _ T R I O _ S O U R C E S
2012-07-03 14:13:59 +09:00
trio_sources = triostr.c trio.c
2001-05-02 16:41:11 +00:00
e l s e
2012-07-03 14:13:59 +09:00
trio_sources =
e n d i f
2001-05-02 16:41:11 +00:00
libxml2_la_SOURCES = SAX.c entities.c encoding.c error.c parserInternals.c \
parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c \
valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c \
2012-07-03 14:13:59 +09:00
xpointer.c xinclude.c nanohttp.c nanoftp.c \
2012-07-11 16:48:47 +08:00
catalog.c globals.c threads.c c14n.c xmlstring.c buf.c \
2002-12-09 14:13:43 +00:00
xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c \
2012-07-03 14:13:59 +09:00
$( trio_sources) \
2003-09-28 18:58:27 +00:00
xmlreader.c relaxng.c dict.c SAX2.c \
2005-01-04 15:10:22 +00:00
xmlwriter.c legacy.c chvalid.c pattern.c xmlsave.c \
2012-01-26 16:56:22 +08:00
xmlmodule.c schematron.c xzlib.c
2001-02-23 17:55:21 +00:00
DEPS = $( top_builddir) /libxml2.la
2022-04-03 01:42:17 +02:00
LDADDS = $( top_builddir) /libxml2.la
2003-08-14 01:23:25 +00:00
2001-02-23 17:55:21 +00:00
m4datadir = $( datadir) /aclocal
m4data_DATA = libxml.m4
2005-06-26 21:49:08 +00:00
runtest_SOURCES = runtest.c
2022-04-03 01:42:17 +02:00
runtest_CFLAGS = $( EXTRA_CFLAGS) $( THREAD_CFLAGS)
2005-06-26 21:49:08 +00:00
runtest_LDFLAGS =
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_LDFLAGS =
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_LDFLAGS =
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_LDFLAGS =
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_LDFLAGS =
testdict_DEPENDENCIES = $( DEPS)
2022-04-03 01:42:17 +02:00
testdict_LDADD = $( LDADDS)
2008-08-08 12:03:22 +00:00
2005-06-30 13:04:44 +00:00
runsuite_SOURCES = runsuite.c
runsuite_LDFLAGS =
runsuite_DEPENDENCIES = $( DEPS)
2022-04-03 01:42:17 +02:00
runsuite_LDADD = $( LDADDS)
2005-06-26 21:49:08 +00:00
2001-02-23 17:55:21 +00:00
xmllint_SOURCES = xmllint.c
2000-04-03 19:48:13 +00:00
xmllint_LDFLAGS =
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
xmlcatalog_LDFLAGS =
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
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
testThreads_SOURCES = testThreads.c
2022-04-03 01:42:17 +02:00
testThreads_CFLAGS = $( EXTRA_CFLAGS) $( THREAD_CFLAGS)
2001-10-17 11:30:37 +00:00
testThreads_LDFLAGS =
testThreads_DEPENDENCIES = $( DEPS)
2022-04-03 01:42:17 +02:00
testThreads_LDADD = $( BASE_THREAD_LIBS) $( THREAD_LIBS) $( LDADDS)
2001-10-17 11:30:37 +00:00
2002-04-16 15:50:10 +00:00
testAutomata_SOURCES = testAutomata.c
testAutomata_LDFLAGS =
testAutomata_DEPENDENCIES = $( DEPS)
testAutomata_LDADD = $( LDADDS)
2005-01-04 15:10:22 +00:00
testModule_SOURCES = testModule.c
testModule_LDFLAGS =
testModule_DEPENDENCIES = $( DEPS)
testModule_LDADD = $( LDADDS)
noinst_LTLIBRARIES = testdso.la
testdso_la_SOURCES = testdso.c
2010-03-10 10:07:49 +01:00
testdso_la_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_LDFLAGS =
testapi_DEPENDENCIES = $( DEPS)
testapi_LDADD = $( LDADDS)
2008-07-29 16:12:31 +00:00
runxmlconf_SOURCES = runxmlconf.c
runxmlconf_LDFLAGS =
runxmlconf_DEPENDENCIES = $( DEPS)
runxmlconf_LDADD = $( LDADDS)
2003-04-24 17:12:57 +00:00
#testOOM_SOURCES=testOOM.c testOOMlib.h testOOMlib.c
#testOOM_LDFLAGS =
#testOOM_DEPENDENCIES = $(DEPS)
#testOOM_LDADD= $(LDADDS)
2003-04-24 16:06:47 +00:00
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)
ASAN_OPTIONS = " $$ ASAN_OPTIONS:detect_leaks=0 " $( CHECKER) ./testapi$( EXEEXT)
$( CHECKER) ./testchar$( EXEEXT)
$( CHECKER) ./testdict$( EXEEXT)
$( CHECKER) ./testModule$( EXEEXT)
$( CHECKER) ./testThreads$( EXEEXT)
$( CHECKER) ./runxmlconf$( EXEEXT)
# 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-04-03 21:29:58 +02:00
tests : $( TEST_DEBUG ) $( TEST_CATALOG ) $( TEST_REGEXPS ) $( TEST_SCHEMATRON ) Timingtests $( TEST_VTIME ) $( PYTHON_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 > .memdump)
@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 ; \
2003-09-10 10:51:05 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
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 ; \
2001-07-09 16:01:19 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2004-08-16 00:39:03 +00:00
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 > .memdump)
@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 ; \
2003-09-10 10:51:05 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
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 ; \
2001-08-21 10:56:31 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2003-10-02 22:28:19 +00:00
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 ; \
2003-09-10 10:51:05 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
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 ; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2003-10-02 22:28:19 +00:00
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; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-11-15 11:21:43 +00:00
$( CHECKER) $( top_builddir) /xmlcatalog --noout --add public Pubid sysid $( srcdir) /result/catalogs/mycatalog; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-11-15 11:21:43 +00:00
$( CHECKER) $( top_builddir) /xmlcatalog --noout --add public Pubid2 sysid2 $( srcdir) /result/catalogs/mycatalog; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-11-15 11:21:43 +00:00
$( CHECKER) $( top_builddir) /xmlcatalog --noout --add public Pubid3 sysid3 $( srcdir) /result/catalogs/mycatalog; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-11-15 11:21:43 +00:00
diff result/catalogs/mycatalog.full $( srcdir) /result/catalogs/mycatalog; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-11-15 11:21:43 +00:00
$( CHECKER) $( top_builddir) /xmlcatalog --noout --del sysid $( srcdir) /result/catalogs/mycatalog; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-11-15 11:21:43 +00:00
$( CHECKER) $( top_builddir) /xmlcatalog --noout --del sysid3 $( srcdir) /result/catalogs/mycatalog; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-11-15 11:21:43 +00:00
$( CHECKER) $( top_builddir) /xmlcatalog --noout --del sysid2 $( srcdir) /result/catalogs/mycatalog; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-11-15 11:21:43 +00:00
diff result/catalogs/mycatalog.empty $( srcdir) /result/catalogs/mycatalog; \
2001-11-06 15:24:37 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-11-15 11:21:43 +00:00
rm -f $( srcdir) /result/catalogs/mycatalog)
2001-08-21 10:56:31 +00:00
2002-04-16 15:50:10 +00:00
Automatatests : testAutomata $( EXEEXT )
@( echo > .memdump)
@echo "## Automata regression tests"
-@( for i in $( srcdir) /test/automata/* ; do \
name = ` basename $$ i` ; \
if [ ! -d $$ i ] ; then \
if [ ! -f $( srcdir) /result/automata/$$ name ] ; then \
echo New test file $$ name ; \
$( CHECKER) $( top_builddir) /testAutomata $$ i > $( srcdir) /result/automata/$$ name; \
2003-09-10 10:51:05 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2002-04-16 15:50:10 +00:00
else \
2003-10-02 22:28:19 +00:00
log = ` $( CHECKER) $( top_builddir) /testAutomata $$ i 2>& 1 > result.$$ name ; \
2002-04-16 15:50:10 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
2003-10-02 22:28:19 +00:00
diff $( srcdir) /result/automata/$$ name result.$$ name` ; \
2017-05-26 23:01:54 +02:00
if [ -n " $$ log " ] ; then echo $$ name result ; echo " $$ log " ; fi ; \
2002-04-16 15:50:10 +00:00
rm result.$$ name ; \
fi ; fi ; done )
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 ) dba 100000.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
MEM = ` cat .memdump | grep "MEMORY ALLOCATED" | awk '{ print $$7}' ` ; \
if [ " $$ MEM " != "" ] ; then echo Using $$ MEM bytes ; fi ; \
2003-09-17 22:33:22 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
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
MEM = ` cat .memdump | grep "MEMORY ALLOCATED" | awk '{ print $$7}' ` ; \
if [ " $$ MEM " != "" ] ; then echo Using $$ MEM bytes ; fi ; \
2003-09-17 22:33:22 +00:00
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
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
MEM = ` cat .memdump | grep "MEMORY ALLOCATED" | awk '{ print $$7}' ` ; \
if [ " $$ MEM " != "" ] ; then echo Using $$ MEM bytes ; fi ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
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
MEM = ` cat .memdump | grep "MEMORY ALLOCATED" | awk '{ print $$7}' ` ; \
if [ " $$ MEM " != "" ] ; then echo Using $$ MEM bytes ; fi ; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
exit 0)
2003-09-17 22:33:22 +00:00
2005-07-31 12:17:24 +00:00
Schematrontests : xmllint $( EXEEXT )
@( echo > .memdump)
@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; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
else \
log = ` $( CHECKER) $( top_builddir) /xmllint$( EXEEXT) --schematron $$ i $$ j \
> res.$$ name 2> err.$$ name; \
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; \
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
dist-hook : cleanup libxml 2.spec
2003-03-21 21:22:48 +00:00
-cp libxml2.spec $( distdir)
2022-03-01 17:18:56 +01:00
( cd $( srcdir) ; tar -cf - --exclude .git win32 os400 vms test result) | ( cd $( distdir) ; tar xf -)
1999-02-21 21:20:12 +00:00
2004-08-31 09:37:03 +00:00
dist-source : distdir
2005-07-10 23:12:52 +00:00
$( AMTAR) -chof - --exclude Tests --exclude test --exclude result $( distdir) | GZIP = $( GZIP_ENV) gzip -c >` echo " $( distdir) " | sed "s+libxml2+libxml2-sources+" ` .tar.gz
2004-08-31 09:37:03 +00:00
2005-07-05 14:04:36 +00:00
dist-test : distdir
2005-07-10 23:12:52 +00:00
( mkdir -p $( distdir) )
2022-02-13 23:29:51 +01:00
( cd $( srcdir) ; tar -cf - --exclude .git xstc/Tests) | ( cd $( distdir) ; tar xf -)
2022-02-14 03:40:59 +01:00
tar -cf - $( distdir) /test $( distdir) /result $( distdir) /xstc/Tests $( distdir) /Makefile.tests $( distdir) /README.md $( distdir) /README.tests $( distdir) /testapi.c $( distdir) /runtest.c $( distdir) /runsuite.c | GZIP = $( GZIP_ENV) gzip -c >` echo " $( distdir) " | sed "s+libxml2+libxml2-tests+" ` .tar.gz
2005-07-10 21:38:31 +00:00
@( rm -rf $( distdir) /xstc/Test)
2005-07-05 14:04:36 +00:00
2001-01-25 18:54:39 +00:00
cleantar :
2002-02-18 14:32:39 +00:00
@( rm -f libxml*.tar.gz COPYING.LIB)
2001-01-25 18:54:39 +00:00
2003-11-18 23:52:38 +00:00
rpm : cleanup cleantar
2005-07-10 23:12:52 +00:00
@( unset CDPATH ; $( MAKE) dist-source dist && rpmbuild -ta $( distdir) .tar.gz)
2001-02-23 17:55:21 +00:00
2022-04-03 18:44:37 +02:00
CLEANFILES = 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-25 13:47:16 +02:00
EXTRA_DIST = xml2-config.in libxml.spec.in \
2004-11-04 10:52:50 +00:00
libxml.m4 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 \
2001-02-23 17:55:21 +00:00
example/Makefile.am example/gjobread.c example/gjobs.xml \
2022-04-03 18:30:26 +02:00
libxml-2.0.pc.in libxml-2.0-uninstalled.pc.in \
2016-02-09 17:55:40 +01:00
libxml2-config.cmake.in autogen.sh \
2002-01-19 15:40:18 +00:00
trionan.c trionan.h triostr.c triostr.h trio.c trio.h \
2022-08-26 01:22:33 +02:00
triop.h triodef.h libxml.h \
genUnicode.py TODO_SCHEMAS \
2022-03-04 08:55:28 -08:00
dbgen.pl dbgenattr.pl \
2012-08-24 16:52:44 +08:00
README.tests Makefile.tests libxml2.syms timsort.h \
2022-02-14 03:40:59 +01:00
README.zOS README.md \
2022-02-13 23:29:51 +01:00
CMakeLists.txt config.h.cmake.in libxml2-config.cmake.cmake.in
2003-09-17 22:33:22 +00:00
2001-02-23 17:55:21 +00:00
pkgconfigdir = $( libdir) /pkgconfig
2022-08-25 13:47:16 +02:00
nodist_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
2002-01-24 15:02:46 +00:00
#
2004-06-25 05:49:08 +00:00
# Install the tests program sources as examples
2002-01-24 15:02:46 +00:00
#
2022-03-30 16:51:13 +02:00
examplesdir = $( docdir) /examples
2022-04-03 20:36:38 +02:00
examples_DATA = xmllint.c
2008-01-11 07:19:24 +00:00
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
if [ " `echo $( LDFLAGS) | grep coverage` " = "" ] ; then \
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