mirror of
https://github.com/php/php-src.git
synced 2026-04-13 19:14:16 +02:00
Autoconf 2.59d (released in 2006) [1] started promoting several macros as not relevant for newer systems anymore, including the `AC_HEADER_TIME`. This macro checks if both `<sys/time.h>` and `<time.h>` can be included at the same time and defines the `TIME_WITH_SYS_TIME` and `HAVE_SYS_TIME_H` symbols. On current system such check is not relevant anymore because in case both headers are present both can be also included at the same time. This patch simplifies this checking. Refs: [1] http://git.savannah.gnu.org/cgit/autoconf.git/tree/NEWS [2] https://www.gnu.org/software/autoconf/manual/autoconf-2.69/autoconf.html
31 lines
512 B
Plaintext
31 lines
512 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 stdlib.h strings.h string.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
|
|
|
|
|
|
])
|