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
567f612d29
build: Check for declaration of glob() function
...
Don't rely on presence of glob.h.
2024-08-19 17:57:43 +02: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
7c10393fc0
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.
2024-07-22 17:41:41 +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
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
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
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
e80f27fc81
build: Don't check for inttypes.h
...
This header isn't used.
2024-05-21 18:37:57 +02:00
Nick Wellnhofer
2e9e758d1e
dict: Get random seed from system PRNG
2023-12-24 16:24:34 +01:00
Nick Wellnhofer
e2ce828c9b
cmake: Update config.h.cmake.in
...
This should enable TLS and destructors.
2023-11-28 16:51:06 +01:00
Nick Wellnhofer
5cffba8381
Rework va_copy fallback
...
va_copy is a macro, so it can be detected without a feature test.
Fallback to __va_copy or memcpy.
2023-11-28 15:59:40 +01:00
Nick Wellnhofer
57cfd221a6
dict: Use xoroshiro64** as PRNG
...
Stop using rand_r. This enables hash randomization on all platforms.
2023-09-01 14:52:04 +02:00
Nick Wellnhofer
cb8ccb1078
testapi: Don't set http_proxy environment variable
...
We already disable network access, so this has no effect.
2023-05-25 03:17:45 +02:00
Nick Wellnhofer
a41878bd4c
build: Remove check for broken ss_family
...
This only seemed to affect ancient AIX systems.
2022-09-06 01:07:24 +02:00
Nick Wellnhofer
30c8d9bb23
http: Simplify IPv6 checks
...
This should also enable IPv6 support on Windows. Untested and mostly
useless anyway, since we don't support HTTPS.
2022-09-05 02:26:13 +02:00
Nick Wellnhofer
fe02289fa5
Remove arg cast configure checks
...
We can simply cast to non-const char * unconditionally.
2022-09-04 03:19:01 +02:00
Nick Wellnhofer
75bd98a5ef
Remove unused code in nanohttp.c
...
This was hidden behind an undocumented flag RES_USE_INET6.
2022-09-02 18:33:36 +02:00
Nick Wellnhofer
5bffa33a12
Stop including sys/types.h
2022-09-02 18:33:36 +02:00
Nick Wellnhofer
02709d0f67
Remove remaining definitions of STDC_HEADERS
...
Sync with Autotools build.
2022-04-20 19:18:17 +02:00
Nick Wellnhofer
21ddad5284
Remove ICONV_CONST test
...
We can simply cast the offending pointer to (void *).
2022-03-04 22:08:58 +01:00
Nick Wellnhofer
72119afe00
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.
2022-03-02 01:14:08 +01:00
Nick Wellnhofer
776d15d383
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
2022-03-02 00:43:54 +01:00
Ben Boeckel
51c88c6f8d
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.
2022-01-16 14:34:37 +01:00
Ben Boeckel
1a013ba711
configure: remove unused checks for libraries
...
These libraries are queried for, but no code cares about the results, so
remove the checks.
2022-01-16 14:34:37 +01:00
Ben Boeckel
9669bd68a3
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.
2022-01-16 14:34:37 +01:00
Ben Boeckel
f86082359b
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.
2022-01-16 14:34:37 +01:00
Markus Rickert
5ddf02f2a5
Update config.h.cmake.in
2020-07-12 18:42:18 +02:00
Markus Rickert
2a2c38f3a3
Add CMake build files
...
Closes #24 .
2020-05-04 13:53:11 +02:00