Updated configure.in to run more comprehensive function detection.
This commit is contained in:
parent
cd352a6341
commit
86e2af5e13
1 changed files with 23 additions and 2 deletions
25
configure.in
25
configure.in
|
@ -16,6 +16,7 @@ AC_PROG_LN_S
|
||||||
AC_PROG_MAKE_SET
|
AC_PROG_MAKE_SET
|
||||||
## Need AC_PROG_LIBTOOL
|
## Need AC_PROG_LIBTOOL
|
||||||
AC_PROG_LIBTOOL
|
AC_PROG_LIBTOOL
|
||||||
|
AC_PROG_AWK
|
||||||
AC_PROG_RANLIB
|
AC_PROG_RANLIB
|
||||||
# Checks for libraries.
|
# Checks for libraries.
|
||||||
|
|
||||||
|
@ -79,6 +80,19 @@ AM_CONDITIONAL(HAVE_LIBCHECK, false)
|
||||||
AC_MSG_WARN([Check not found; cannot run unit tests!])
|
AC_MSG_WARN([Check not found; cannot run unit tests!])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
#AC_CHECK_LIB([check], [tcase_set_timeout],
|
||||||
|
# have_libcheck_timeout=yes,
|
||||||
|
# have_libcheck_timeout=no)
|
||||||
|
#
|
||||||
|
#if test x$have_libcheck_timeout = xyes ; then
|
||||||
|
#AC_DEFINE(HAVE_CHECK_TCASE_SET_TIMEOUT)
|
||||||
|
#AH_TEMPLATE(HAVE_CHECK_TCASE_SET_TIMEOUT, [Define to 1 if your version of check supports tcase_set_timeout().])
|
||||||
|
#else
|
||||||
|
#if test x$have_libcheck = xyes ; then
|
||||||
|
#AC_MSG_WARN([Found a really old version of check; disabling test case timeouts. Expect compiler warnings...])
|
||||||
|
#fi
|
||||||
|
#fi
|
||||||
|
|
||||||
#AM_CONDITIONAL(HAVE_LIBCHECK, test x$have_libcheck=xyes)
|
#AM_CONDITIONAL(HAVE_LIBCHECK, test x$have_libcheck=xyes)
|
||||||
|
|
||||||
## This perl script thing is a total hack, but we need to define HAVE_LIBCHECK
|
## This perl script thing is a total hack, but we need to define HAVE_LIBCHECK
|
||||||
|
@ -161,14 +175,20 @@ AC_CHECK_LIB([c], [bindtextdomain])
|
||||||
|
|
||||||
# Checks for header files.
|
# Checks for header files.
|
||||||
AC_HEADER_DIRENT
|
AC_HEADER_DIRENT
|
||||||
|
AC_FUNC_ALLOCA
|
||||||
AC_HEADER_STDC
|
AC_HEADER_STDC
|
||||||
AC_HEADER_SYS_WAIT
|
AC_HEADER_SYS_WAIT
|
||||||
AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h malloc.h memory.h netdb.h netinet/in.h stdlib.h string.h strings.h sys/socket.h sys/time.h syslog.h unistd.h errno.h])
|
AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h malloc.h memory.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h strings.h sys/socket.h sys/time.h syslog.h unistd.h errno.h])
|
||||||
|
|
||||||
# Checks for typedefs, structures, and compiler characteristics.
|
# Checks for typedefs, structures, and compiler characteristics.
|
||||||
AC_C_CONST
|
AC_C_CONST
|
||||||
|
AC_C_INLINE
|
||||||
|
AC_TYPE_INT64_T
|
||||||
|
AC_TYPE_UINT64_T
|
||||||
|
AC_TYPE_OFF_T
|
||||||
AC_TYPE_PID_T
|
AC_TYPE_PID_T
|
||||||
AC_TYPE_SIZE_T
|
AC_TYPE_SIZE_T
|
||||||
|
AC_TYPE_SSIZE_T
|
||||||
AC_HEADER_TIME
|
AC_HEADER_TIME
|
||||||
AC_STRUCT_TM
|
AC_STRUCT_TM
|
||||||
|
|
||||||
|
@ -181,7 +201,8 @@ AC_FUNC_MALLOC
|
||||||
AC_FUNC_MEMCMP
|
AC_FUNC_MEMCMP
|
||||||
AC_FUNC_REALLOC
|
AC_FUNC_REALLOC
|
||||||
AC_FUNC_STAT
|
AC_FUNC_STAT
|
||||||
AC_CHECK_FUNCS([bzero fdatasync getcwd gettimeofday inet_ntoa localtime_r memmove memset mkdir powl posix_memalign socket sqrt strchr strdup strerror strrchr strstr strtoul tcase_set_timeout])
|
AC_FUNC_VPRINTF
|
||||||
|
AC_CHECK_FUNCS([bzero fdatasync ftruncate getcwd gettimeofday inet_ntoa localtime_r memmove memset mkdir posix_memalign pow powl socket sqrt strchr strdup strerror strrchr strstr strtol strtoul tcase_set_timeout])
|
||||||
|
|
||||||
#AC_CONFIG_LIBMYSQLD
|
#AC_CONFIG_LIBMYSQLD
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue