mirror of
https://github.com/php/php-src.git
synced 2026-04-17 04:51:03 +02:00
The C89 standard and later defines the `<string.h>` header as part of the standard headers [1] and on current systems it is always present. Code included also `<strings.h>` header as an alterinative in some files. This kind of check was relevant on some older systems where the `<strings.h>` file included definitions for the C89 compliant `<string.h>`. Today such alternative check is not required anymore. The `<strings.h>` file is part of the POSIX definition these days. Also Autoconf suggests doing this and relying on C89 or above [2] and [3]. This patch also cleans few unused `<strings.h>` inclusions in the libmbfl. [1]: https://port70.net/~nsz/c/c89/c89-draft.html#4.1.2 [2]: http://git.savannah.gnu.org/cgit/autoconf.git/tree/lib/autoconf/headers.m4 [3]: https://www.gnu.org/software/autoconf/manual/autoconf-2.69/autoconf.html
31 lines
494 B
Plaintext
31 lines
494 B
Plaintext
# Local macros for automake & autoconf
|
|
|
|
AC_DEFUN([XMLRPC_FUNCTION_CHECKS],[
|
|
|
|
# Standard XMLRPC list
|
|
AC_CHECK_FUNCS( \
|
|
strtoul strtoull snprintf \
|
|
strstr strpbrk strerror\
|
|
memcpy memmove)
|
|
|
|
])
|
|
|
|
AC_DEFUN([XMLRPC_HEADER_CHECKS],[
|
|
AC_HEADER_STDC
|
|
AC_CHECK_HEADERS(xmlparse.h xmltok.h strings.h)
|
|
])
|
|
|
|
AC_DEFUN([XMLRPC_TYPE_CHECKS],[
|
|
|
|
AC_REQUIRE([AC_C_INLINE])
|
|
AC_CHECK_SIZEOF(char, 1)
|
|
|
|
AC_CHECK_SIZEOF(int, 4)
|
|
AC_CHECK_SIZEOF(long, 4)
|
|
AC_CHECK_SIZEOF(long long, 8)
|
|
AC_TYPE_SIZE_T
|
|
AC_TYPE_UID_T
|
|
|
|
|
|
])
|