kc3-lang/libxml2/config.h.cmake.in

Branch :


Log

Author Commit Date CI Message
b85d77d1 2025-04-20 14:31:24 http: Remove built-in HTTP client Stubs are retained for ABI compatibility. Fixes #631. Obsoletes #160.
de478472 2024-11-22 00:45:44 build: Remove unused variables
a5764b56 2024-11-21 22:18:36 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.
567f612d 2024-08-19 17:43:32 build: Check for declaration of glob() function Don't rely on presence of glob.h.
e1291059 2024-07-22 22:22:48 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.
cc03c069 2024-07-22 22:15:09 build: Don't check for standard POSIX headers These headers should be available since early POSIX days and are required no matter what.
d7dc2eaf 2024-07-22 21:39:54 build: Don't check for dlfcn.h and dl.h It's enough to check for symbols.
7c10393f 2024-07-22 17:25:15 build: Fix config.h macros We have to emulate AC_CHECK_DECLS. Instead of leaving the macro undefined if a symbol wasn't found, it has to be set to 0.
3ef66611 2024-07-22 14:58:16 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.
e1657f3f 2024-07-22 14:33:14 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.
c195f06f 2024-06-25 22:14:47 autotools: Use AX_GCC_FUNC_ATTRIBUTE from autoconf archives
1afaa371 2024-06-25 22:06:36 build: Move definition of ATTRIBUTE_DESTRUCTOR to libxml.h
84a4f84c 2024-06-22 02:11:24 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.
dc6f55cf 2024-06-22 00:35:14 build: Remove check for IPv6 Only check for availability of netdb.h.
02326d72 2024-06-21 23:54:35 build: Remove socklen_t checks socklen_t has been mandated by POSIX for ages. Always use "socklen_t" or "int" on Win32.
11ce63f0 2024-05-21 20:38:52 build: Don't check for isascii
6f2a5973 2024-05-21 20:37:03 build: Don't check for uint32_t
e80f27fc 2024-05-21 18:37:57 build: Don't check for inttypes.h This header isn't used.
2e9e758d 2023-12-24 14:27:46 dict: Get random seed from system PRNG
e2ce828c 2023-11-28 16:51:06 cmake: Update config.h.cmake.in This should enable TLS and destructors.
5cffba83 2023-11-28 15:34:28 Rework va_copy fallback va_copy is a macro, so it can be detected without a feature test. Fallback to __va_copy or memcpy.
57cfd221 2023-09-01 14:52:04 dict: Use xoroshiro64** as PRNG Stop using rand_r. This enables hash randomization on all platforms.
cb8ccb10 2023-05-25 03:07:57 testapi: Don't set http_proxy environment variable We already disable network access, so this has no effect.
a41878bd 2022-09-05 23:16:23 build: Remove check for broken ss_family This only seemed to affect ancient AIX systems.
30c8d9bb 2022-09-05 02:02:54 http: Simplify IPv6 checks This should also enable IPv6 support on Windows. Untested and mostly useless anyway, since we don't support HTTPS.
fe02289f 2022-09-04 03:19:01 Remove arg cast configure checks We can simply cast to non-const char * unconditionally.
75bd98a5 2022-09-02 05:09:42 Remove unused code in nanohttp.c This was hidden behind an undocumented flag RES_USE_INET6.
5bffa33a 2022-09-02 05:03:03 Stop including sys/types.h
02709d0f 2022-04-20 19:18:17 Remove remaining definitions of STDC_HEADERS Sync with Autotools build.
21ddad52 2022-03-04 01:07:40 Remove ICONV_CONST test We can simply cast the offending pointer to (void *).
72119afe 2022-03-02 01:14:08 Don't check for standard C89 library functions Don't check for - fprintf - localtime - printf - rand - sprintf - srand - sscanf - strftime - time - vfprintf - vsprintf If the C99 functions snprintf and vsnprintf are missing, Trio is enabled.
776d15d3 2022-03-02 00:29:17 Don't check for standard C89 headers Don't check for - ctype.h - errno.h - float.h - limits.h - math.h - signal.h - stdarg.h - stdlib.h - string.h - time.h Stop including non-standard headers - malloc.h - strings.h
51c88c6f 2021-07-26 20:12:45 configure: remove unused checks for functions Nothing uses the results from these checks, so remove the checks. There are some "uses" in order to suppress macro shadowing in MSVC's implementation of `isinf` and `isnan` as macros, but those are hard-coded and do not require checks to manage.
1a013ba7 2021-07-26 20:11:56 configure: remove unused checks for libraries These libraries are queried for, but no code cares about the results, so remove the checks.
9669bd68 2021-07-26 20:09:32 configure: remove unused checks for headers These headers are checked for at configure time, but the code never cares about the results of these checks, so skip them.
f8608235 2021-07-26 20:06:18 cmake: fix `ATTRIBUTE_DESTRUCTOR` definition The code expects it to be set to the attribute for `xmlDestructor`, but in CMake, it is only ever available as `1` or undefined. Instead, match the behavior or autoconf.
5ddf02f2 2020-06-07 16:06:17 Update config.h.cmake.in
2a2c38f3 2020-04-21 00:53:12 Add CMake build files Closes #24.