Nick Wellnhofer
e50d314a27
build: Add separate configuration option for RELAX NG
...
Support for RELAX NG used to be enabled together with XML Schema support
(--with-schemas). Now there's a separate option and a new feature macro
LIBXML_RELAXNG_ENABLED.
2025-03-01 15:18:20 +01:00
Nick Wellnhofer
bfe6af2eed
fuzz: Remove hacks to build lint fuzzer
...
Don't include source file directly.
2025-01-17 20:06:45 +01:00
Nick Wellnhofer
260954c566
autotools: Set AC_CONFIG_AUX_DIR
...
This should make sure that autoreconf doesn't mess with parent
directories.
Should fix #833 .
2024-12-26 18:17:45 +01:00
Nick Wellnhofer
afeff9c52b
xinclude: Allow build without XPath
...
This disables XPath queries and makes the tests fail, but might be
useful.
2024-12-21 21:58:25 +01:00
Nick Wellnhofer
de47847293
build: Remove unused variables
2024-11-22 01:54:28 +01:00
Nick Wellnhofer
a5764b56d2
build: Define XML_SYSCONFDIR in config.h
...
Rename SYSCONFDIR macro to XML_SYSCONFDIR.
Use AX_RECURSIVE_EVAL with Autotools. This is GPL v2 with Autoconf
exception which shouldn't be a problem.
Finally support meson.
2024-11-21 22:44:02 +01:00
Nick Wellnhofer
b57e022d75
build: Check for icu-uc instead of icu-i18n
...
This should be the ICU component we actually need.
2024-11-13 19:10:45 +01:00
Nick Wellnhofer
567f612d29
build: Check for declaration of glob() function
...
Don't rely on presence of glob.h.
2024-08-19 17:57:43 +02:00
makise-homura
5c60860905
Eliminate false positive -Warray-bounds on some compilers
...
This affects GCC 7.3, MinGW 7.3, and LCC 1.25 and 1.26.
In some sense it reverts ad93f087.
2024-08-16 22:35:54 +03:00
Nick Wellnhofer
e1291059af
build: Don't check for pthread.h
...
The Autotools build still checks for pthread.h (and zlib.h and lzma.h)
but the result isn't needed in config.h.
2024-07-22 23:03:55 +02:00
Nick Wellnhofer
cc03c069f5
build: Don't check for standard POSIX headers
...
These headers should be available since early POSIX days and are
required no matter what.
2024-07-22 23:02:59 +02:00
Nick Wellnhofer
d7dc2eaf06
build: Don't check for dlfcn.h and dl.h
...
It's enough to check for symbols.
2024-07-22 21:39:54 +02:00
Nick Wellnhofer
0172ffa99b
build: Only check for required headers
2024-07-22 17:03:27 +02:00
Nick Wellnhofer
3ef6661175
build: Rework mmap checks
...
Switch to AC_CHECK_DECLS/check_symbol_exists. Don't check for
sys/mman.h separately. Don't check for munmap.
2024-07-22 17:03:27 +02:00
Nick Wellnhofer
e1657f3f27
build: Use AC_CHECK_DECLS/check_symbol_exists for getentropy
...
This assumes that getentropy is declared in sys/random.h.
Should fix issues on iOS. See #774 .
2024-07-22 17:03:27 +02:00
Nick Wellnhofer
e2a49afe3e
build: Read version number from VERSION file
2024-07-03 20:32:23 +02:00
Nick Wellnhofer
c3731347c4
build: Introduce LIBXML_MINOR_COMPAT
...
This is set to 0 for now but could be used to avoid ABI stability
issues.
2024-07-03 18:33:16 +02:00
Nick Wellnhofer
1167c3340e
encoding: Don't include iconv.h from libxml/encoding.h
2024-07-01 18:05:40 +02:00
Nick Wellnhofer
64685e9812
autotools: Remove NON_PC_LIBS
...
Improves modularization.
2024-06-29 01:22:42 +02:00
Nick Wellnhofer
c195f06fac
autotools: Use AX_GCC_FUNC_ATTRIBUTE from autoconf archives
2024-06-25 22:19:47 +02:00
Nick Wellnhofer
1afaa37128
build: Move definition of ATTRIBUTE_DESTRUCTOR to libxml.h
2024-06-25 22:06:36 +02:00
Sam James
ec47add47c
configure.ac: fix bashisms
...
'==' is a bashism, so use the POSIX '=' instead.
2024-06-24 17:27:50 +00:00
Nick Wellnhofer
0a279e2f68
tests: Remove old timing tests
2024-06-22 21:59:03 +02:00
Nick Wellnhofer
84a4f84c1c
build: Don't check for required headers and functions
...
Unless we are on Windows, the following POSIX headers are required.
They're part of the earliest POSIX specs and it doesn't make sense to
check for them.
- fcntl.h
- unistd.h
- sys/stat.h
- sys/time.h
On Windows, io.h, fcntl.h and sys/stat.h are always available.
2024-06-22 18:41:00 +02:00
Nick Wellnhofer
dc6f55cf6e
build: Remove check for IPv6
...
Only check for availability of netdb.h.
2024-06-22 18:41:00 +02:00
Nick Wellnhofer
02326d72d3
build: Remove socklen_t checks
...
socklen_t has been mandated by POSIX for ages. Always use "socklen_t" or
"int" on Win32.
2024-06-22 00:40:40 +02:00
Nick Wellnhofer
7ba6c8feea
autotools: Remove libxml-2.0-uninstalled.pc
2024-06-21 13:51:09 +02:00
Nick Wellnhofer
c106455c25
build: Set Cflags.private on Windows
2024-06-21 13:51:09 +02:00
Nick Wellnhofer
fc4bd04bdd
autotools: Remove unused variable
2024-06-21 13:48:22 +02:00
Nick Wellnhofer
4c1b88513f
autotools: Move MODULE_PLATFORM_LIBS into NON_PC_LIBS
2024-06-21 13:48:22 +02:00
Nick Wellnhofer
29bf09ec44
autotools: Remove XML_LIBTOOLLIBS
2024-06-21 13:48:22 +02:00
Nick Wellnhofer
02f519e67b
autotools: Use pkg-config to check for libreadline
...
This handles static linking properly and avoids overlinking.
Change the --with-readline default to no as it was before and raise an
error if libreadline couldn't be found.
Do the same for libhistory.
2024-06-21 13:48:22 +02:00
Nick Wellnhofer
2b0c4abb1f
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.
2024-06-17 00:54:47 +02:00
Nick Wellnhofer
3848802723
xmllint: Support libreadline without history
2024-06-17 00:54:47 +02:00
Nick Wellnhofer
b0fc67aa22
build: Remove --with-tree configuration option
...
This option would allow for a smaller, but mostly useless minimal build.
But it complicates the symbol availability logic in an insane way and
requires specialized tools like our custom C parser in doc/apibuild.py.
See #717 .
2024-06-16 18:47:12 +02:00
Nick Wellnhofer
7cf7a54aea
build: Only enable linker version script in legacy mode
...
The version script is deprecated but required for backward
compatibility.
2024-06-16 18:47:12 +02:00
Nick Wellnhofer
898e5a1442
build: Remove compiler TLS warning
2024-06-15 20:17:18 +02:00
Nick Wellnhofer
f070acc564
autotools: Abort if external libraries couldn't be found
...
This makes the configuration process more robust and deterministic.
Before, we would silently disable options.
2024-06-15 01:23:39 +02:00
Nick Wellnhofer
669bd34993
xpointer: Remove support for XPointer locations
...
The latest spec for what it essentially an XPath extension seems to be
this working draft from 2002:
https://www.w3.org/TR/xptr-xpointer/
The xpointer() scheme is listed as "being reviewed" in the XPointer
registry since at least 2006. libxml2 seems to be the only modern
software that tries to implement this spec, but the code has many bugs
and quality issues.
If you configure --with-legacy, old symbols are retained for ABI
compatibility.
2024-06-12 18:20:01 +02:00
Nick Wellnhofer
dba1ed85a3
ftp: Remove FTP support
...
Remove the built-in FTP client. If you configure --with-legacy, old
symbols are retained for ABI compatibility.
2024-06-12 18:19:55 +02:00
Nick Wellnhofer
b46decdfc9
Bump version
2024-06-12 15:58:36 +02:00
Nick Wellnhofer
ec09909dd3
autotools: Fix pthread detection on FreeBSD
...
pthread_join is defined by libc, so check for pthread_create instead.
Should fix #725 .
2024-05-29 13:47:37 +02:00
Nick Wellnhofer
e349709ae7
build: Remove --with-fexceptions configuration option
2024-05-21 21:07:16 +02:00
Nick Wellnhofer
f524993e70
build: Clean up configuration options
...
Remove run-debug from meson. Fix documentation.
2024-05-21 21:05:32 +02:00
Nick Wellnhofer
11ce63f02b
build: Don't check for isascii
2024-05-21 20:40:30 +02:00
Nick Wellnhofer
6f2a597383
build: Don't check for uint32_t
2024-05-21 20:40:30 +02:00
Nick Wellnhofer
5c9e0ebe71
autotools: Change ICU message
...
Only log non-default actions.
2024-05-21 20:40:28 +02:00
Nick Wellnhofer
54629e0f75
autotools: Remove --with-coverage configuration option
2024-05-21 20:25:23 +02:00
Nick Wellnhofer
e80f27fc81
build: Don't check for inttypes.h
...
This header isn't used.
2024-05-21 18:37:57 +02:00
Nick Wellnhofer
dda69626b9
autotools: Only check for networking headers if required
2024-05-21 18:31:37 +02:00