mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00

The Automake and aclocal were part of the previous PHP build system where Automake created Makefile from the Makefile.in templates and aclocal was used to produce the aclocal.m4. They were removed as dependencies via9d9d39a0de
ande715fb00f8
.
30 lines
483 B
Text
30 lines
483 B
Text
# Local macros for 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
|
|
|
|
|
|
])
|