configure.in


Log

Author Commit Date CI Message
Nicolas Le Cam 1af8b7b2 2013-06-14T22:20:37 Fix compilation with minimum and schematron. Add a hard dependancy on tree. Disable write and close callbacks when output is disabled.
Patrick Monnerat d1c0cc99 2013-12-12T15:14:47 Add macros needed for OS/400 portability
Philip Withnall f3f86ff4 2013-10-28T17:24:02 build: Use pkg-config to find liblzma in preference to AC_CHECK_LIB This means that liblzma’s Libs.private will be included in LZMA_LIBS if linking the libraries statically, ensuring that there are no undefined symbol errors from liblzma’s private libraries. If pkg-config isn’t installed, or if liblzma.pc couldn’t be found, fall back to using AC_CHECK_LIB as before. This will cause static linking to fail, but that’s not a regression. This does not introduce a compile time dependency on pkg-config. https://bugzilla.gnome.org/show_bug.cgi?id=711026
Daniel Veillard f4e5a699 2013-04-19T15:36:36 Release of libxml2-2.9.1 * configure.in: bumped version * doc/*: updated the symbols file and regenerated
Daniel Veillard b8e3f80d 2013-03-28T09:46:20 updated configure.in for python3
Gilles Espinasse a0989068 2013-03-04T22:46:21 Fix configure cannot remove messages this is the other way to solve ./configure cannot remove messages by simply removing rm detection in configure.in There is already a raw 'rm -f' at the end on configure.in
Tim Starling 0ad948ed 2012-10-29T13:41:55 Define LIBXML_THREAD_ALLOC_ENABLED via xmlversion.h Otherwise, direct calls to xmlFree() etc. from the application will use a different set of allocation functions to what was used to allocate the memory internally.
Daniel Veillard 5d04ad11 2012-09-11T17:17:15 Downgrade autoconf requirement to 2.63 It was automatically bumped to 2.68 and that's not needed
Daniel Richard 878ec9db 2012-09-07T14:52:17 Second round of cleanups for LibXML2 docs/examples configure.am: * Explicitly disallow --enable-rebuild-docs when builddir != srcdir, per what you said about needing to build docs with an in-source build doc/Makefile.am: * Ensure that xmlversion.h is in the source tree before running apibuild.py, to avoid generating an incomplete libxml2-api.xml * Update the .PHONY target (forgot to do this earlier) doc/devhelp/Makefile.am: * Wrap the doc-generating rule in an "if REBUILD_DOCS" conditional so it doesn't cause trouble for regular users * Added a handy-dandy "rebuild" target doc/examples/index.py: * NOTE: You need to run this script to regenerate the files it creates, and then commit the newly-updated files! The generated files currently in git master (e.g. doc/examples/Makefile.am) are out of date even before this patch! * index.html really needs to be in EXTRA_DIST * Wrap the doc-generating rules in an "if REBUILD_DOCS" conditional, because they shouldn't be active otherwise
Arfrever Frehtes Taifersar Arahesis 1f01f49b 2012-08-28T22:16:50 Handle ICU_LIBS as LIBADD, not LDFLAGS to prevent linking errors For https://bugzilla.gnome.org/show_bug.cgi?id=677606 For https://bugs.gentoo.org/show_bug.cgi?id=417539 If libxml2-2.8.0 is built with --with-icu --with-python on a system that has an older version of libxml2 installed, then during "make install", libxml2mod.so gets relinked to the systemwide version of libxml2.so.2 instead of libxml2.so.2 from the build tree, and fails at runtime if symbol versions from the older libxml2.so.2 are not available. This effectively makes it impossible to build a libxml2-2.8.0 binary package on a system that does not already have libxml2-2.8.0 installed. Investigation by Rafał Mużyło and Arfrever Frehtes Taifersar Arahesis revealed the cause of the problem to be that libxml2's configure was adding ICU_LIBS to LDFLAGS instead of to LIBADD. This resulted in GNU libtool using the wrong argument order in its relinking command that gets run during "make install".
Akira TAGOH 961b535c 2012-07-03T14:13:59 Bug 676544 - fails to build with --without-sax1 Added some ifdef'd LIBXML_SAX1_ENABLED to make it buildable with --without-sax1 configure option.
Daniel Richard G ec4fc529 2012-08-17T10:04:30 More updates and cleanups on autotools and Makefiles Makefile.am, example/Makefile.am: * Replaced the obsolete INCLUDES variable with AM_CPPFLAGS/AM_CFLAGS acinclude.m4: * autoupdate replaced AC_FD_CC with AS_MESSAGE_LOG_FD autogen.sh: * Added -Wall to the autoreconf invocation, which turned up a whole slew of warnings that are fixed by this patch configure.in: * Most of the changes are due to autoupdate, with subsequent manual tidying * Note that autoupdate bumped the AC_PREREQ version from 2.59 to 2.68. If you normally use an older version of Autoconf, and everything works fine if you comment out that directive, feel free to bump down the version accordingly. * Ensure that #include directives in C fragments always have no whitespace to the left of the '#' mark, as some preprocessors need that to be in the first column example/Makefile.am: * Don't need DEPS * Use plain LDADD instead of LDADDS; if all programs in this file need to link against the same set of libraries, then this is all you need
Roumen Petrov 8886f335 2012-08-13T16:38:09 fixup regression in Various "make distcheck" and portability fixups Was using the wrong variable and adds proper m4 quoting
Daniel Veillard aa017c54 2012-08-10T10:42:56 Release candidate 1 of libxml2-2.9.0 * configure.in libxml.spec.in python/setup.py: bumped release numbers * doc//*: regenerated as part of the release
Daniel Veillard 28cc42d0 2012-08-10T10:00:18 Regenerating docs and API files Various cleanups * configure.in: force regeneration of APIs in my environment * buf.c buf.h enc.h encoding.c include/libxml/tree.h include/libxml/xmlerror.h save.h tree.c: various comment cleanups pointed by apibuild * doc/apibuild.py: added the 3 new internal headers in the excludes * doc/libxml2-api.xml doc/libxml2-refs.xml: regenerated the API * doc/symbols.xml: listing new entry points for 2.9.0 * doc/devhelp/*: regenerated
Daniel Richard G 5706b6d8 2012-08-06T11:32:54 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
Daniel Veillard c943f708 2012-05-23T17:10:59 Release of libxml2-2.8.0 - Makefile.am: don't package .git - configure.in : update to new release - doc/xml.html: added the new release - doc/* testapi.c: regenerated
Roumen Petrov 978ff224 2012-05-20T16:07:54 use mingw C99 compatible functions {v}snprintf instead those from MSVC runtime
Daniel Veillard d495e6a8 2012-05-20T20:48:34 Part for rand_r checking missing Forgot to push that change in previous commit
Christian Dywan 040dcb59 2012-05-10T22:55:07 Remove git error message during configure For https://bugzilla.gnome.org/show_bug.cgi?id=635531 If git is not installed but .git was found configure would emit an error message
John Hein a4fe9b26 2012-05-10T22:12:46 emove a bashism in confgure.in Not portable, broke on old FreeBSD
Sam Thursfield 115581ae 2012-05-09T18:46:56 prefer native threads on win32 For https://bugzilla.gnome.org/show_bug.cgi?id=665526 When building on Win32 configure the suport to use native Windows threads since there is support for it unless pthreads are found and asked for explicitely
Andoni Morales fda5717c 2012-05-08T10:46:09 Fix mingw's snprintf configure check For mingw, snprintf is defined as _snprintf and therefore the check should be for _snprintf. This applies to _vsnprintf too.
Javier Jardón eacf6bc6 2012-04-02T18:13:23 Remove vestigial de-ANSI-fication support. configure.ac (AM_C_PROTOTYPES): Remove call to this macro. The support for automatic de-ANSI-fication has been deprecated in automake 1.11.2, and will be removed altogether in automake 1.12.0
Daniel Mustieles bde9c353 2012-03-19T21:39:58 Fixed bug #667946
Daniel Veillard 8973d58b 2012-02-04T19:07:44 Add hash randomization to hash and dict structures Following http://www.ocert.org/advisories/ocert-2011-003.html it seems that having hash randomization might be a good idea when using XML with untrusted data * configure.in: lookup for rand, srand and time * dict.c: add randomization to dictionaries hash tables * hash.c: add randomization to normal hash tables
Anders F Bjorklund eae52617 2011-09-18T16:59:13 add lzma compression support
Stefan Kost 85deb486 2011-05-10T10:55:07 configure: add -Wno-long-long to CFLAGS
Stefan Kost c9c939d6 2011-05-10T10:34:41 configure: support silent automake rules if possible This gives us a much less noisy build and makes error stand out a lot more.
Daniel Veillard 00819877 2010-11-04T21:53:14 Reactivate the shared library versionning script
Daniel Veillard 4c2e7c65 2010-11-04T18:35:57 Release of libxml2-2.7.8
Daniel Veillard 82143f4e 2010-11-04T17:55:41 595789 fix a remaining potential Solaris problem
Giuseppe Iuculano 48f7dcb7 2010-11-04T17:42:42 480323 add code to plug in ICU converters by default This is not configured in by default but after some serious massaging incorporate that patch from Chromium/Chrome.
LRN fbd4ddf2 2010-11-04T15:45:46 607273 Fix python detection on MSys/Windows Fix the lookup for python executable and headers, add an extra variable for new dependancies when linking for Python on Win32
Adrian Bunk 64b0d60c 2010-11-04T09:43:31 Switch from the obsolete mkinstalldirs to AC_PROG_MKDIR_P This was obsoleted in 2005 so we should be safe. But keep AC_PREREQ to 2.59 as it's still widely deployed.
Daniel Veillard bb5055f3 2010-03-15T16:21:00 Release of libxml2-2.7.7 * configure.in: bump version * doc//*: regenerated
Daniel Macks 12febe86 2010-03-15T10:31:24 Fix detection of python linker flags python-config has both --libs and --ldflags, and we should use the later to link the python binding
Roumen Petrov f39adc25 2010-03-11T14:49:13 Fix build failure on Sparc solaris Tries to find the right ld options needed to pass a linker script.
Roumen Petrov 120a2699 2010-03-10T10:07:49 Fix build with mingw - include/libxml/xmlexports.h: restore export decoration otherwise xsltproc and xmlsec crash - libxml.h: define LIBXML_STATIC for static build - configure.in: enable modules support for mingw* builds - Makefile.am: flags for testdso if modules support enabled
Daniel Veillard 3157e515 2010-03-09T11:32:46 Upgrade some of the configure and autogen Based on Roumen Petrov suggestions
Daniel Veillard 96bb740e 2009-10-06T18:38:15 Release of libxml2-2.7.6 * configure.in doc/xml.html: updates for release * NEWS doc/libxml2.xsa doc/news.html python/setup.py: regenerated
Andrew W. Nosenko 858084fd 2009-10-06T18:14:15 Restore thread support in default configuration * configure.in: use '||' for "logical OR" operator as it should to be instead of '|' (pipe)
Daniel Veillard 7a896ce2 2009-09-24T18:38:57 Release of libxml2-2.7.5 * configure.in doc/xml.html: updated * doc/libxml2.xsa doc/xml.html python/setup.py: regenerated
Andrew W. Nosenko 2bdf87e3 2009-09-24T17:33:21 Restore behavior of --with-threads without argument * configure.in: restore behavior of --with-threads without argument as "enable threads support"
Frederic Crozat e21731de 2009-09-12T18:02:40 link python module with python library * configure.in python/Makefile.am: libxml2 python module wasn't linked with python library
Daniel Veillard 29341682 2009-09-10T18:23:39 Release of libxml2-2.7.4 * configure.in: new version * libxml.spec.in: cleanup * xmlregexp.c: fix a comment * doc/apibuild.py: update * doc/*: regenerate everything
Scott McCreary 59f53085 2009-08-26T09:55:24 Add -lnetwork for compiling on Haiku * configure.in: trivial addition of network to the AC_SEARCH_LIB check for setsockopt.
Scott McCreary 508a8d68 2009-08-24T16:35:35 Small patch to accomodate the Haiku OS * configure.in: keep M_LIBS to empty
Raphael Prevost 48b60c3c 2009-08-23T13:11:01 559501 avoid select and use poll for nanohttp * config.h.in configure.in: detect availability of poll() and poll.h * nanohttp.c: switch to use poll instead of select() when possible to avoid out of fd set memory errors on very large fds
Daniel Veillard 8ed1072c 2009-08-20T19:17:36 Add symbol versioning to libxml2 shared libs * libxml2.syms: the symbols with history, going back to 2.4.30 * Makefile.am configure.in: linking flags detection and use * parser.c tree.c valid.c xpointer.c: various cleanup of functions which could be made static or simply discarded, not that many
LRN 203fd2e6 2009-08-07T21:47:25 Allow to select the threading system on Windows * configure.in: changes to enable either pthreads or win32-threads
veillard 97c7be6a 2009-05-12T08:43:54 * configure.in: adapt the extra version detection code to git Daniel
Daniel Veillard 97ff9b36 2009-01-18T21:43:30 preparing 0.7.3 release fix a typo in a name Daniel * configure.in doc/xml.html doc/*: preparing 0.7.3 release * include/libxml/parserInternals.h SAX2.c: fix a typo in a name Daniel svn path=/trunk/; revision=3814
Daniel Veillard b40744e3 2008-10-17T13:26:44 patch from Adrian Bunk which adds --disable-rebuild-docs to avoid * configure.in doc/Makefile.am: patch from Adrian Bunk which adds --disable-rebuild-docs to avoid rebuilding them daniel svn path=/trunk/; revision=3801
Daniel Veillard 7f4547cd 2008-10-03T07:58:23 preparing the release of 2.7.2 fix the Solaris portability issue * configure.in doc/* NEWS: preparing the release of 2.7.2 * dict.c: fix the Solaris portability issue * parser.c: additional cleanup on #554660 fix * test/ent13 result/ent13* result/noent/ent13*: added the example in the regression test suite. * HTMLparser.c: handle leading BOM in htmlParseElement() Daniel svn path=/trunk/; revision=3799
Daniel Veillard a7036d93 2008-09-01T14:50:19 prepare release of 2.7.1 daniel * doc/xml.html doc/news.html configure.in python/setup.py NEWS: prepare release of 2.7.1 daniel svn path=/trunk/; revision=3792
Daniel Veillard 1572425c 2008-08-30T15:01:04 preparing 2.7.0 release remove some testing traces remove some warnings * configure.in, doc/*: preparing 2.7.0 release * tree.c: remove some testing traces * parser.c xmlIO.c xmlschemas.c: remove some warnings Daniel svn path=/trunk/; revision=3788
Daniel Veillard bfa5cf1c 2008-08-27T15:33:28 add an --with-coverage configure option and a 'make cov' target based on * configure.in Makefile.am: add an --with-coverage configure option and a 'make cov' target based on gcc profiling and the lcov tool. Currently at 68.9% coverage out of 'make check' and runsuite executions. * xmlreader.c: remove warnings due to C++ comments Daniel svn path=/trunk/; revision=3780
Daniel Veillard 596da973 2008-04-08T14:58:41 preparing release of 2.6.32 Daniel * configure.in NEWS doc/*: preparing release of 2.6.32 Daniel svn path=/trunk/; revision=3734
Daniel Veillard 8e1a46d5 2008-02-15T07:47:26 patch from Roumen Petrov to detect if iconv() needs a const for the second * config.h.in configure.in encoding.c: patch from Roumen Petrov to detect if iconv() needs a const for the second parameter Daniel svn path=/trunk/; revision=3693
Daniel Veillard c707d0b7 2008-01-24T14:48:54 fix a memeory leak in internal subset parsing with a fix from Ashwin add * parser.c: fix a memeory leak in internal subset parsing with a fix from Ashwin * test/errors/content1.xml result/errors/content1.xml*: add test to regressions Daniel svn path=/trunk/; revision=3680
Daniel Veillard c1b3fe05 2007-08-23T15:00:06 preparing release of 2.6.30 Daniel * configure.in doc/*: preparing release of 2.6.30 Daniel svn path=/trunk/; revision=3654
Daniel Veillard 38431c33 2007-06-12T16:20:09 release of libxml2 2.6.28 patch from Dagfinn I. Mannsåker for idness of * doc/* configure.in NEWS: release of libxml2 2.6.28 * valid.c: patch from Dagfinn I. Mannsåker for idness of name in HTML, c.f. bug #305885. Daniel svn path=/trunk/; revision=3638
Daniel Veillard c51f51c9 2007-05-02T16:25:45 typo patch from Bjorn Reese Daniel * configure.in: typo patch from Bjorn Reese Daniel svn path=/trunk/; revision=3612
Daniel Veillard 39bcf94a 2007-04-17T14:47:05 release of libxml2 2.6.28 Daniel * doc/* configure.in NEWS: release of libxml2 2.6.28 Daniel svn path=/trunk/; revision=3601
William M. Brack 0c1e3011 2007-03-14T12:40:21 corrected small error in last commit corrected small typo in last commit * configure.in: corrected small error in last commit * xmlreader.c: corrected small typo in last commit svn path=/trunk/; revision=3591
William M. Brack 06559b3a 2007-03-14T09:34:15 fixed problem with referenced attribute groups (bug #417621) re-ordered * xmlschemas.c: fixed problem with referenced attribute groups (bug #417621) * configure.in: re-ordered some includes for types.h / socket.h (bug 416001) svn path=/trunk/; revision=3590
William M. Brack 7f28a01d 2007-01-11T23:42:10 Re-generated the documentation (API chunks 27-29 were missing) (also * Re-generated the documentation (API chunks 27-29 were missing) (also causes changes to testapi.c, elfgcchack.h and win32/libxml2.def.src) svn path=/trunk/; revision=3574
Daniel Veillard 9cb1b64d 2007-01-03T15:07:44 adapt the extra versioning code to SVN Daniel * configure.in: adapt the extra versioning code to SVN Daniel svn path=/trunk/; revision=3570
Daniel Veillard c8338f1a 2006-10-25T16:06:29 preparing release of libxml2-2.6.27 fix a small problem with preproc flags * NEWS configure.in testapi.c doc//*: preparing release of libxml2-2.6.27 * include/libxml/tree.h: fix a small problem with preproc flags Daniel
Daniel Veillard 33a2de99 2006-10-11T08:33:22 applied patch from Peter Breitenlohner for wget detection and fix of a * configure.in xstc/Makefile.am: applied patch from Peter Breitenlohner for wget detection and fix of a Python path problem, should fix #340993 Daniel
Daniel Veillard 75acfeea 2006-07-13T06:29:56 applied patch from Andrew W. Nosenko to expose if zlib support was * configure.in parser.c xmllint.c include/libxml/parser.h include/libxml/xmlversion.h.in: applied patch from Andrew W. Nosenko to expose if zlib support was compiled in, in the header, in the feature API and in the xmllint --version output. Daniel
Daniel Veillard fabafd54 2006-06-08T08:16:33 preparing release of 2.6.26 Daniel * configure.ini NEWS doc//* libxml.spec.in : preparing release of 2.6.26 Daniel
Daniel Veillard 69839ba1 2006-06-06T13:27:03 preparing release of 2.6.25 Daniel * configure.ini NEWS doc//* libxml.spec.in : preparing release of 2.6.25 Daniel
Daniel Veillard d7d07488 2006-05-03T13:15:44 applied another Python detection patch from Joseph Sacco cleanup the * configure.in: applied another Python detection patch from Joseph Sacco * libxml.spec.in: cleanup the changelog section, asciifies the spec file too Daniel
Daniel Veillard b2f8f1de 2006-04-28T16:30:48 preparing 2.6.24 release, fixed Python paths at the last moment fix some * NEWS configure.in doc//*: preparing 2.6.24 release, fixed Python paths at the last moment * relaxng.c testapi.c tree.c: fix some comments Daniel
Daniel Veillard 8492ba1c 2006-04-25T12:52:12 applied patch from Joseph Sacco changing slightly the python detection * configure.in: applied patch from Joseph Sacco changing slightly the python detection scheme should fix bug #338526 Daniel
Daniel Veillard 4188ddf8 2006-01-19T08:58:42 trying to fix windows/configure issues reported by Tim Van Holder Daniel * configure.in xml2-config.in: trying to fix windows/configure issues reported by Tim Van Holder Daniel
Daniel Veillard 67952601 2006-01-05T15:29:44 upated the news regenerated the docs, preparing for release of 2.6.23 * NEWS configure.in libxml.spec.in testapi.c doc/*: upated the news regenerated the docs, preparing for release of 2.6.23 * pattern.c xmlschemas.c: fixed some comments Daniel
Daniel Veillard 6a0baa0c 2005-12-10T11:11:12 fixed a number of warnings shown by HP-UX compiler and reported by Rick * HTMLparser.c configure.in parserInternals.c runsuite.c runtest.c testapi.c xmlschemas.c xmlschemastypes.c xmlstring.c: fixed a number of warnings shown by HP-UX compiler and reported by Rick Jones Daniel
Daniel Veillard d4e39ae2 2005-10-28T15:59:14 cleanup from Albert Chin html/index.sgml doesn't exist anymore Daniel * config.h.in configure.in vms/config.vms macos/src/config-mac.h: cleanup from Albert Chin * doc/Makefile.am: html/index.sgml doesn't exist anymore Daniel
Daniel Veillard 1d96f5aa 2005-10-28T08:44:48 applied 2 patches from Albert Chin for module portability Daniel * xmlmodule.c configure.in: applied 2 patches from Albert Chin for module portability Daniel
William M. Brack f4caa5e6 2005-10-20T09:04:05 fixed problem in xmlTextWriterVSprintf caused by misuse of vsnprintf added * xmlwriter.c: fixed problem in xmlTextWriterVSprintf caused by misuse of vsnprintf * configure.in, config.h.in: added a configuration check for va_copy and added a define for VA_COPY for xmlwriter.c fix * parser.c: fixed problem with CRLF split between chunks (bug #319279) (fix provided by Brion Vibber)
Daniel Veillard 33b20b70 2005-09-12T21:43:20 release of 2.6.22 updated doc and rebuild. added XML_SAVE_NO_XHTML * NEWS configure.in doc//*: release of 2.6.22 updated doc and rebuild. * xmlsave.c include/libxml/xmlsave.h: added XML_SAVE_NO_XHTML xmlSaveOption * xmlschemas.c: minor cleanups Daniel
Daniel Veillard 99b78502 2005-09-11T22:04:08 started work needed to generate devhelp content, not too hard based on the * configure.in doc/Makefile.am doc/apibuild.py doc/libxml2-api.xml doc/devhelp/*: started work needed to generate devhelp content, not too hard based on the existing format and extractor. Daniel
Daniel Veillard b3d1491b 2005-09-04T20:47:39 prepare for release work for #303289, fix a formatting bug for MIN_INT * configure.in doc/* configure.in: prepare for release * xpath.c: work for #303289, fix a formatting bug for MIN_INT Daniel
Daniel Veillard c2f7056a 2005-09-01T12:45:26 the use of AM_PATH_PYTHON is not portable enough reverting back to * configure.in: the use of AM_PATH_PYTHON is not portable enough reverting back to AM_PATH_PROG Daniel
Daniel Veillard 32a461f6 2005-08-25T21:48:54 trying to fix the first part of #310033 by detecting gcc <= 3.2 Daniel * configure.in: trying to fix the first part of #310033 by detecting gcc <= 3.2 Daniel
Daniel Veillard 3854c57a 2005-08-25T10:17:45 patch from Andrew W. Nosenko, use se $GCC = 'yes' instead of $CC = 'gcc' * configure.in: patch from Andrew W. Nosenko, use se $GCC = 'yes' instead of $CC = 'gcc' because GCC may have a different name Daniel
Daniel Veillard 4f69eb69 2005-08-24T22:19:10 changes the way the python binary is found, should also fix bug #308004 * configure.in: changes the way the python binary is found, should also fix bug #308004 Daniel
Daniel Veillard 379a3b7d 2005-08-12T10:18:14 applied patch from Derek Poon fixing bug #310692 Daniel * valid.c: applied patch from Derek Poon fixing bug #310692 Daniel
Daniel Veillard ed6c5497 2005-07-23T15:00:22 changed xmlPatterncompile signature to pass an int and not an enum since * pattern.c include/libxml/pattern.h: changed xmlPatterncompile signature to pass an int and not an enum since it can generate ABI compat troubles. * include/libxml/schematron.h schematron.c: adding the new schematron code, work in progress lots to be left and needing testing * include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h.in Makefile.am configure.in: integration of schematron into the build * xpath.c include/libxml/xpath.h: adding flags to control compilation options right now just XML_XPATH_CHECKNS. Daniel
Daniel Veillard 9202b674 2005-07-14T09:31:14 applied a patch from Gerrit P. Haase to add module support on cygwin * configure.in: applied a patch from Gerrit P. Haase to add module support on cygwin Daniel
Daniel Veillard 78dfc9f0 2005-07-10T22:30:30 preparing release 2.6.20 removed a compilation problem Daniel * Makefile.am NEWS configure.in doc/*: preparing release 2.6.20 * xmllint.c: removed a compilation problem Daniel
Daniel Veillard 39e5c890 2005-07-03T22:48:50 fixing a leak detected by testapi in xmlDOMWrapAdoptNode, and fixing * testapi.c tree.c: fixing a leak detected by testapi in xmlDOMWrapAdoptNode, and fixing another side effect in testapi seems to pass tests fine now. * include/libxml/parser.h parser.c: xmlStopParser() is no more limited to push mode * error.c: remove a warning * runtest.c xmllint.c: avoid compilation errors if only some parts of the library are compiled in. Daniel
William M. Brack 7d8b36bc 2005-06-25T07:30:50 fixed a problem with the detection of ss_family for ipV6, as reported on * configure.in: fixed a problem with the detection of ss_family for ipV6, as reported on the mailing list by Doug Orleans.
Daniel Veillard dbfe05af 2005-05-04T09:18:00 on linux/gcc use weak definitions to avoid linking with pthread library on * Makefile.am configure.in threads.c: on linux/gcc use weak definitions to avoid linking with pthread library on non-threaded environments. * xpath.c: applied patch from Mark Vakoc w.r.t. a buggy namespace list allocation. Daniel
Daniel Veillard 771971f2 2005-04-02T10:49:51 preparing release 2.6.19, updated docs and rebuilding. Daniel * doc/* configure.in NEWS: preparing release 2.6.19, updated docs and rebuilding. Daniel
Daniel Veillard c284c64f 2005-03-31T10:24:24 use XML_SOCKLEN_T instead of SOCKLEN_T since apparently IBM can't avoid * config.h.in configure.in nanoftp.c nanohttp.c xmllint.c macos/src/config-mac.h: use XML_SOCKLEN_T instead of SOCKLEN_T since apparently IBM can't avoid breaking common defines #166922 Daniel
Daniel Veillard 57c000e3 2005-03-13T18:34:29 preparing release of 2.6.18 updated docs and rebuilt reactivated gcc * NEWS configure.in testapi.c doc/*: preparing release of 2.6.18 updated docs and rebuilt * libxml.spec.in: reactivated gcc profiling for gcc >= 4.0.0 Daniel