Annotation of embedaddon/php/ext/xmlrpc/libxmlrpc/acinclude.m4, revision 1.1.1.1

1.1       misho       1: # Local macros for automake & autoconf
                      2: 
                      3: AC_DEFUN([XMLRPC_FUNCTION_CHECKS],[
                      4: 
                      5: # Standard XMLRPC list
                      6: AC_CHECK_FUNCS( \
                      7:  strtoul strtoull snprintf \
                      8:  strstr strpbrk strerror\
                      9:  memcpy memmove)
                     10: 
                     11: ])
                     12: 
                     13: AC_DEFUN([XMLRPC_HEADER_CHECKS],[
                     14: AC_HEADER_STDC
                     15: AC_CHECK_HEADERS(xmlparse.h xmltok.h stdlib.h strings.h string.h)
                     16: ])
                     17: 
                     18: AC_DEFUN([XMLRPC_TYPE_CHECKS],[
                     19: 
                     20: AC_REQUIRE([AC_C_CONST])
                     21: AC_REQUIRE([AC_C_INLINE])
                     22: AC_CHECK_SIZEOF(char, 1)
                     23: 
                     24: AC_CHECK_SIZEOF(int, 4)
                     25: AC_CHECK_SIZEOF(long, 4)
                     26: AC_CHECK_SIZEOF(long long, 8)
                     27: AC_TYPE_SIZE_T
                     28: AC_HEADER_TIME
                     29: AC_TYPE_UID_T
                     30: 
                     31: 
                     32: ])

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>