Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 2b0c4abb | 2024-06-16 21:52:12 | threads: Remove pthread weak symbol hack On Linux, we tried to detect the presence of libpthread to disable things like locks. This questionable hack doesn't work since glibc 2.34 which merged libpthread into libc. | ||
| 33a1f897 | 2024-06-16 19:16:47 | legacy: Merge SAX.c into legacy.c | ||
| 481fd6bb | 2024-06-16 16:30:54 | tests: Remove testThreads.c This was merged into runtest.c some time ago. | ||
| 1341deac | 2024-06-16 17:57:12 | xmllint: Move shell to xmllint Move source code for xmllint shell to shell.c and move it from the libxml2 library to the xmllint executable. Also allow shell to run without XPath and debug modules. Add stubs for old shell API functions in legacy build mode. | ||
| e714f506 | 2024-06-15 20:14:03 | build: Stop installing libxml.m4 This file is deprecated and unmaintained. It will be kept in the source tree for a while. | ||
| dba1ed85 | 2024-06-12 18:19:55 | ftp: Remove FTP support Remove the built-in FTP client. If you configure --with-legacy, old symbols are retained for ABI compatibility. | ||
| 609d2666 | 2024-05-01 23:46:46 | Stop defining _REENTRANT This macro is obsolete, see `man feature_test_macros`. | ||
| bffef46c | 2024-04-28 22:58:06 | doc: Don't install example code | ||
| d381e5de | 2024-04-28 21:14:32 | doc: Move doc/examples to example | ||
| 5732ce56 | 2024-04-04 12:14:46 | meson: Initial commit | ||
| d636ef1d | 2024-01-11 00:43:44 | tests: Remove testOOM This was never part of the standard test suite and we now test OOM error handling more comprehensively with fuzz testing. | ||
| ed3ad3e1 | 2023-12-20 11:42:08 | Makefile.am: omit $(top_builddir) from DEPS and LDADDS BSD make is less liberal than GNU make in matching targets, and so it tries to resolve the dependency `./libxml2.la` and fails to match the target `libxml2.la`. | ||
| 455c61d6 | 2023-11-23 15:59:41 | Remove VMS support This was last updated 10 years ago and is most likely broken. | ||
| 7d6969d9 | 2023-11-23 15:48:52 | Remove Trio Trio is a rather old cross-platform printf library which was bundled with libxml2. It was needed for ancient pre-C99 systems without snprintf and should be safe to remove these days. | ||
| a9ada183 | 2023-10-22 13:56:55 | tests: Start with testparser.c for extra tests Several issues require customized tests. Start with a test that push parses large documents. See #539. | ||
| 34630630 | 2023-05-05 17:34:57 | autoconf: fix iconv library paths and pass cflags when building executables See 0f77167f for prior related work | ||
| 886bf4e6 | 2023-04-30 15:35:47 | Stop calling xmlMemoryDump This was used to check for memory leaks but could potentially create a .memdump file. These days, there are better ways to check for memory leaks. | ||
| 905386ec | 2023-02-13 11:14:34 | autotools: Fix make distcheck - Add private/xinclude.h to EXTRA_DIST - Add runsuite.log to CLEANFILES Fixes #485. | ||
| c74e5903 | 2022-12-21 22:24:50 | Remove ancient TODOs | ||
| 101a542e | 2022-12-21 21:47:10 | Remove RPM build, Makefile.tests, README.tests | ||
| eaebf37f | 2022-12-08 18:38:45 | gentest.py: Fix memory leak in API tests Regressed in commit ff34ba3e. | ||
| b92768cd | 2022-12-08 00:24:53 | tests: Enable "runsuite" test This enables some tests with testcases in - test/xsdtest - test/relaxng/OASIS/spectest.xml - test/relaxng/testsuite.xml The XML Schema Test Suite will also be run it was downloaded, see xstc/Makefile.am. Gitlab CI should be updated to fetch these files. There are 10 expected errors in the XSD test suite. This seems to be the case since at least version 2.9.0 from 2012. | ||
| 3a1c5ee7 | 2022-09-04 18:22:30 | Disable fuzzer tests if glob.h wasn't found | ||
| caef8563 | 2022-09-02 17:26:47 | Move automata test to runtest.c | ||
| c59df16d | 2022-09-02 17:00:05 | Always link with -no-undefined This is a good idea to detect errors early. | ||
| 513d65fe | 2022-09-02 16:45:06 | Use AM_CFLAGS and AM_LDFLAGS consistently | ||
| 0f77167f | 2022-09-02 02:08:44 | Rework library detection in configure.ac Migrate to AC_CHECK_LIB and AC_SEARCH_LIBS. Don't pollute CPPFLAGS, LDFLAGS and LIBS. | ||
| 14d38a71 | 2022-09-01 05:53:51 | Don't build unneeded .c source files | ||
| ae2b8021 | 2022-08-29 16:13:50 | Cleanup distribution settings in Makefile.am - Remove useless nodist_ prefix - Prefer dist_ prefix over EXTRA_DIST - Remove .in files from EXTRA_DIST | ||
| aa383e66 | 2022-08-26 17:37:09 | Don't distribute libxml2.spec This is a generated file. | ||
| b218abce | 2022-08-26 02:49:25 | Don't create missing.xml when running testapi Side effect of b31e07db. Use a non-existing directory to avoid creating a file. | ||
| 0f568c0b | 2022-08-26 01:22:33 | Consolidate private header files Private functions were previously declared - in header files in the root directory - in public headers guarded with IN_LIBXML - in libxml.h - redundantly in source files that used them. Consolidate all private header files in include/private. | ||
| 7f7961df | 2022-08-25 13:47:16 | Remove generated files from distribution - libxml2.spec - libxml-2.0.pc - xml2-config - include/libxml/xmlversion.h - python/libxml2.py - python/libxml2-export.c - python/libxml2-py.c - python/libxml2-py.h - python/libxml2class.py - python/libxml2class.txt - python/setup.py | ||
| b60cdf1f | 2022-08-18 19:17:37 | Remove Makefile rule to build testapi.c This file is under version control and should only be rebuilt on demand. | ||
| d20df9d8 | 2022-08-17 12:01:04 | Cleanup files generated by test suite Fixes make distcheck. | ||
| e59aa6ca | 2022-04-04 05:57:07 | Move doc/examples tests to new test suite | ||
| 3f74e42b | 2022-04-04 05:19:33 | Simplify 'make check' targets | ||
| 5ce893c0 | 2020-07-09 03:21:07 | Move regexp tests to runtest | ||
| 95c7f315 | 2022-04-03 21:39:14 | Move SVG tests to runtest.c Also update the test results for the first time since 2000. | ||
| 0cca7b51 | 2022-04-03 21:29:58 | Move testModule to new test suite Invoke testModule when the modern test suite is run with 'make check'. | ||
| f23ca9f9 | 2022-04-03 21:25:54 | Move testThreads to new test suite Invoke testThreads when the modern test suite is run with 'make check'. | ||
| 48b03c84 | 2022-04-03 20:36:38 | Remove major parts of old test suite Remove all the parts of the old test suite which are covered by runtest.c for quite some time. The following test programs are removed: - testC14N - testHTML - testReader - testRelax - testSAX - testSchemas - testURI - testXPath This also removes a few results of unimportant tests only run by the old test suite. | ||
| 4b10e7cf | 2022-04-03 18:44:37 | Remove outdated xml2Conf.sh | ||
| 61b78b0a | 2022-04-03 18:30:26 | Consolidate man pages Move xml2-config.1 into doc directory. Remove outdated libxml.3. | ||
| a340d8b1 | 2022-04-03 02:20:04 | Use XML_PRIVATE_LIBS in libxml2_la_LIBADD After this change, variables Z_LIBS, LZMA_LIBS, ICU_LIBS, ICONV_LIBS and WIN32_EXTRA_LIBADD are unused outside of configure.ac. We keep exporting them with AC_SUBST for now. | ||
| 1db151ac | 2022-04-03 14:36:03 | Remove LIBS from XML_PRIVATE_LIBS | ||
| 7016b0e0 | 2022-04-03 01:42:17 | Don't overlink executables With very few exceptions, utilities and test programs don't require any external libraries. - xmllint and xmlcatalog need libreadline - runtest and testThreads need pthreads | ||
| 5c71ada8 | 2022-03-30 16:51:17 | Detect libm using libtool's macros | ||
| 54e3f74b | 2022-03-30 16:51:13 | Makefile.am: install examples more idiomatically | ||
| 865520f0 | 2022-03-30 00:32:35 | Respect `--sysconfdir` in source files * Prefix installations need to point to a non-root `etc` - Gentoo Prefix has been patching this for over 10 years: https://bugs.gentoo.org/317891 - MacPorts has to manually replace paths after patching: https://github.com/macports/macports-ports/blob/cc3bb736e906abe73b014da02a89ae2b70ef6295/textproc/libxml2/Portfile#L46 | ||
| d9335077 | 2022-03-29 13:37:16 | Use AM_PATH_PYTHON/PKG_CHECK_MODULES for python bindings * `AM_PATH_PYTHON` is a much more common idiom for building and installing python modules than writing your own. * It also makes cross-compiling the python bindings possible. Previously the `PYTHON_CFLAGS`/`PYTHON_LIBS` would have been based on the `--build` python and not the `--host` python. By using `pkg-config`, we can always redirect the python-X.Y.pc. Bug: https://bugs.gentoo.org/582130 | ||
| 4a8c71eb | 2022-03-04 03:35:57 | Remove DOCBparser This code has been broken and deprecated since version 2.6.0, released in 2003. Because of a bug in commit 961b535c, DOCBparser.c was never compiled since 2012. I couldn't find a Debian package using any of its symbols, so it seems safe to remove this module. | ||
| 1a112c7b | 2022-03-04 08:55:28 | Remove regressions.py from Makefile.am This patch removes regressions.py and regressions.xml from Makefile.am. These files were removed in 5ec1ef1c and since they are still in Makefile.am, it causes "make dist-all" to fail. | ||
| 8f3bd262 | 2022-03-01 17:18:56 | Remove broken VxWorks support | ||
| 041ed3d6 | 2022-03-01 17:17:19 | Remove broken Mac OS 9 support | ||
| 50f6feb9 | 2022-03-01 00:05:54 | Remove broken bakefile support | ||
| 6117700e | 2022-02-20 20:56:40 | Remove special configuration for certain maintainers | ||
| 346c3a93 | 2022-02-20 18:46:42 | Remove elfgcchack.h The same optimization can be enabled with -fno-semantic-interposition since GCC 5. clang has always used this option by default. | ||
| a20a6022 | 2022-02-14 03:40:59 | Fix distribution after README change | ||
| 7fe9addc | 2022-02-13 23:29:51 | Remove CVS and SVN-related code | ||
| 96753450 | 2021-07-29 12:14:03 | Correctly install the HTML examples into their subdirectory. Previous to this commit, the examples where installed haphazardly within all the other html documents, also overwriting index.html, for example. Signed-off-by: Mattia Rizzolo <mattia@mapreri.org> | ||
| 7c0253aa | 2021-07-29 12:11:08 | Refactor the settings of $docdir This is a completely noop change for this project, since before this commit nothing was using $docdir nor PROGRAM_TARNAME. Setting the fourth parameter of AC_INIT() makes it set PROGRAM_TARNAME, which then used as the last path component of the default docdir, effectively making $docdir be the same as the previous $BASE_DIR/$DOC_MODULE. Signed-off-by: Mattia Rizzolo <mattia@mapreri.org> | ||
| 5c7bdbc9 | 2020-11-25 18:41:14 | Add CMake files to EXTRA_DIST | ||
| 1bde1040 | 2020-10-25 20:02:23 | Add 'fuzz' subdirectory to DIST_SUBDIRS Fixes #191. | ||
| 6b4717d6 | 2020-07-06 12:36:27 | Add regexp regression tests - Bug 757711: heap-buffer-overflow in xmlFAParsePosCharGroup <https://bugzilla.gnome.org/show_bug.cgi?id=757711> - Bug 783015 - Integer-overflow in xmlFAParseQuantExact <https://bugzilla.gnome.org/show_bug.cgi?id=783015> (Regexptests): Add support for checking stderr output when running regexp tests. This makes it possible to check in test cases that fail and not see false-positive error output when running the tests. Unlike other libxml2 test suites, if there is no stderr output, no *.err file needs to be created. | ||
| 00ed736e | 2020-06-05 12:49:25 | Add a couple of libFuzzer targets - XML fuzzer Currently tests the pull parser, push parser and reader, as well as serialization. Supports splitting fuzz data into multiple documents for things like external DTDs or entities. The seed corpus is built from parts of the test suite. - Regexp fuzzer Seed corpus was statically generated from test suite. - URI fuzzer Tests parsing and most other functions from uri.c. | ||
| 20c60886 | 2020-03-08 17:19:42 | Fix typos Resolves #133. | ||
| d56184a0 | 2019-09-26 12:11:39 | Disable xmlExp regex code This is apparently another regex engine that was never used, see commit 81a8ec6. | ||
| 1fc410d3 | 2019-07-01 22:22:14 | xml2-config: Add a --dynamic switch to print only shared libraries `xml2-config --libs` prints static library linking information by default. This is un-necessary for most programs, so introduce a new option, --dynamic, which, when combined with --libs, only prints shared library linking information. | ||
| 57d4329b | 2018-01-23 17:33:42 | Merge testThreadsWin32.c into testThreads.c Apply the same cross-platform modifications as previously in runtest.c. | ||
| 8cb8e317 | 2017-11-12 18:22:23 | Don't touch CFLAGS in configure.ac CFLAGS shouldn't be touched by configure.ac. The variable is supplied by the user and must come after other flags, so flags like warning options can be overridden. Rename CFLAGS to EXTRA_CFLAGS and add the value to AM_CFLAGS. This also makes it possible to override flags for each Automake program or library. | ||
| 86182390 | 2017-11-13 22:17:53 | Revert "Compile testapi with -Wno-unused-function" This reverts commit f404c4f500a0ec18b04463581d5d1b3aae7f7730. The change broke non-GCC compilers. | ||
| f404c4f5 | 2017-10-31 17:14:43 | Compile testapi with -Wno-unused-function | ||
| 56ec9cef | 2017-08-28 20:15:38 | Adding README.zOS to list of extra files for the release | ||
| 988a5a3b | 2017-06-17 15:44:50 | Build test programs only when needed Add test programs to 'check_PROGRAMS' instead of 'noinst_PROGRAMS'. Fixes bug 760457. | ||
| dbaab1f3 | 2017-06-16 21:38:57 | Test SAX2 callbacks with entity substitution This detects regressions like bug 760367. | ||
| 67f9f9d6 | 2017-06-12 19:25:01 | Misc fixes for 'make tests' - Silence test output. - Clean up after doc/examples tests. - Adjust expected output for script tests. - Add missing results for relaxng/pattern3 There are still two test failures I can't comment on: - regexp/bug316338 - schemas/any4_0 | ||
| e2663054 | 2017-06-05 15:37:17 | Fix handling of parameter-entity references There were two bugs where parameter-entity references could lead to an unexpected change of the input buffer in xmlParseNameComplex and xmlDictLookup being called with an invalid pointer. Percent sign in DTD Names ========================= The NEXTL macro used to call xmlParserHandlePEReference. When parsing "complex" names inside the DTD, this could result in entity expansion which created a new input buffer. The fix is to simply remove the call to xmlParserHandlePEReference from the NEXTL macro. This is safe because no users of the macro require expansion of parameter entities. - xmlParseNameComplex - xmlParseNCNameComplex - xmlParseNmtoken The percent sign is not allowed in names, which are grammatical tokens. - xmlParseEntityValue Parameter-entity references in entity values are expanded but this happens in a separate step in this function. - xmlParseSystemLiteral Parameter-entity references are ignored in the system literal. - xmlParseAttValueComplex - xmlParseCharDataComplex - xmlParseCommentComplex - xmlParsePI - xmlParseCDSect Parameter-entity references are ignored outside the DTD. - xmlLoadEntityContent This function is only called from xmlStringLenDecodeEntities and entities are replaced in a separate step immediately after the function call. This bug could also be triggered with an internal subset and double entity expansion. This fixes bug 766956 initially reported by Wei Lei and independently by Chromium's ClusterFuzz, Hanno Böck, and Marco Grassi. Thanks to everyone involved. xmlParseNameComplex with XML_PARSE_OLD10 ======================================== When parsing Names inside an expanded parameter entity with the XML_PARSE_OLD10 option, xmlParseNameComplex would call xmlGROW via the GROW macro if the input buffer was exhausted. At the end of the parameter entity's replacement text, this function would then call xmlPopInput which invalidated the input buffer. There should be no need to invoke GROW in this situation because the buffer is grown periodically every XML_PARSER_CHUNK_SIZE characters and, at least for UTF-8, in xmlCurrentChar. This also matches the code path executed when XML_PARSE_OLD10 is not set. This fixes bugs 781205 (CVE-2017-9049) and 781361 (CVE-2017-9050). Thanks to Marcel Böhme and Thuan Pham for the report. Additional hardening ==================== A separate check was added in xmlParseNameComplex to validate the buffer size. | ||
| ac9a4560 | 2017-05-31 19:06:30 | Disable LeakSanitizer when running API tests The autogenerated API tests leak memory. | ||
| 43f50f4d | 2017-05-26 23:01:54 | Fix white space in test output Quote echoed variable to avoid newlines being converted to space. | ||
| 9b4b8cb3 | 2016-05-04 12:33:32 | Add a make rule to rebuild for ASAN | ||
| 0f84ee23 | 2016-02-09 17:55:40 | Add autogen.sh to distrib For https://bugzilla.gnome.org/show_bug.cgi?id=761782 autogen.sh was not included in the tarball releases which complicates situations when users have to make changes to e.g. configure.ac andi have to re-generate configure. | ||
| fa23ac1a | 2014-10-11 21:50:41 | Provide cmake module * add libxml2-config.cmake.in template * configure.ac: add libxml2-config.cmake.in to the configured file list * Makefile.am: install libxml2-config.cmake under ${libdir}/cmake/libxml2 Signed-off-by: Samuel Martin <s.martin49@gmail.com> | ||
| 917e353f | 2014-03-04 17:36:54 | OS400: include in distribution tarball. | ||
| 742a0bbb | 2012-09-11 13:37:30 | Keep libxml2.syms when running "make distclean" | ||
| 1f01f49b | 2012-08-28 22: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". | ||
| 961b535c | 2012-07-03 14: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. | ||
| 3e031b7d | 2012-08-24 16:52:44 | Switching XPath node sorting to Timsort I use libxml xpath engine on quite large (and mostly "flat") xml files. It seems that Shellsort, that is used in xmlXPathNodeSetSort is a performance bottleneck for my case. I have read some posts about sorting in libxml in the libxml archive, but I agree that qsort was not the way to go. I experimented with Timsort instead and my results were good for me. For about 10000 nodes, my test was about 5x faster with Timsort, for 1000 nodes about 10% faster, for small data files, the difference was not measurable. * timsort.h: the algorithm, kept in a separate header * xpath.c: plug in the new algorithm in xmlXPathNodeSetSort * Makefile.am: add the header to the EXTRA_DIST * doc/apibuild.py: avoid indexing the new header | ||
| 73f94c60 | 2012-08-24 16:38:54 | Small cleanup for valgrind target | ||
| ec4fc529 | 2012-08-17 10: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 | ||
| 5706b6d8 | 2012-08-06 11: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 | ||
| 187e5290 | 2012-08-06 10:27:58 | Fix make dist to include new private header files | ||
| 0de1f311 | 2012-07-18 17:43:34 | first version of testlimits new test Used to check behaviour on various parsing limits | ||
| bca22f40 | 2012-07-11 16:48:47 | Adding a new buf module for buffers This also add converter functions between xmlBuf and xmlBuffer * buf.c buf.h: the old xmlBuffer routines but modified for size_t and using xmlBuf instead of xmlBuffer * Makefile.am: add the 2 new files * include/libxml/xmlerror.h: add an entry for the new module * include/libxml/tree.h: expose the xmlBufPtr type but not the structure which stay private | ||
| c943f708 | 2012-05-23 17: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 | ||
| 48f0f3f2 | 2012-05-08 10:59:41 | Fix "make tst" to grab lzma lib too | ||
| adf5ec94 | 2012-01-26 16:56:22 | Cleanups of lzma support - fix inclusion of the separated file - use namespaced name for the 4 non-static routines - add padding after external structures included in-situ - add new requirement to spec file - general cleanup of code | ||
| 0755b662 | 2011-09-19 09:57:06 | included xzlib in dist | ||
| eae52617 | 2011-09-18 16:59:13 | add lzma compression support | ||
| 64b0d60c | 2010-11-04 09: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. |