mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-27 18:32:12 +01:00
Reverts a change introduced in ab44b0cbeb. This was previously in mongodb/mongo-c-driver#920 but removed before merging in mongodb/mongo-c-driver@9d2d8b157c.
126 lines
4.1 KiB
Plaintext
126 lines
4.1 KiB
Plaintext
if test "$os_win32" != "yes"; then
|
|
PHP_MONGODB_BUNDLED_CFLAGS="$PHP_MONGODB_BUNDLED_CFLAGS -D_DEFAULT_SOURCE"
|
|
fi
|
|
|
|
# Check for strnlen()
|
|
dnl AC_CHECK_FUNC isn't properly respecting _XOPEN_SOURCE for strnlen for unknown reason
|
|
AC_SUBST(BSON_HAVE_STRNLEN, 0)
|
|
AC_CACHE_CHECK([for strnlen],
|
|
bson_cv_have_strnlen,
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|
#include <string.h>
|
|
int strnlen () { return 0; }
|
|
]])],
|
|
[bson_cv_have_strnlen=no],
|
|
[bson_cv_have_strnlen=yes])])
|
|
if test "$bson_cv_have_strnlen" = yes; then
|
|
AC_SUBST(BSON_HAVE_STRNLEN, 1)
|
|
fi
|
|
|
|
# Check for reallocf() (BSD/Darwin)
|
|
AC_SUBST(BSON_HAVE_REALLOCF, 0)
|
|
AC_CACHE_CHECK([for reallocf],
|
|
bson_cv_have_reallocf,
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|
#include <stdlib.h>
|
|
int reallocf () { return 0; }
|
|
]])],
|
|
[bson_cv_have_reallocf=no],
|
|
[bson_cv_have_reallocf=yes])])
|
|
if test "$bson_cv_have_reallocf" = yes; then
|
|
AC_SUBST(BSON_HAVE_REALLOCF, 1)
|
|
fi
|
|
|
|
# Check for syscall()
|
|
AC_SUBST(BSON_HAVE_SYSCALL_TID, 0)
|
|
AC_CACHE_CHECK([for syscall],
|
|
bson_cv_have_syscall_tid,
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|
#include <unistd.h>
|
|
#include <sys/syscall.h>
|
|
int syscall () { return 0; }
|
|
]])],
|
|
[bson_cv_have_syscall_tid=no],
|
|
[bson_cv_have_syscall_tid=yes])])
|
|
if test "$bson_cv_have_syscall_tid" = yes -a "$os_darwin" != "yes"; then
|
|
AC_CACHE_CHECK([for SYS_gettid],
|
|
bson_cv_have_sys_gettid_tid,
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|
#include <unistd.h>
|
|
#include <sys/syscall.h>
|
|
int gettid () { return SYS_gettid; }
|
|
]])],
|
|
[bson_cv_have_sys_gettid_tid=yes],
|
|
[bson_cv_have_sys_gettid_tid=no])])
|
|
if test "$bson_cv_have_sys_gettid_tid" = yes; then
|
|
AC_SUBST(BSON_HAVE_SYSCALL_TID, 1)
|
|
fi
|
|
fi
|
|
|
|
# Check for snprintf()
|
|
AC_SUBST(BSON_HAVE_SNPRINTF, 0)
|
|
AC_CHECK_FUNC(snprintf, [AC_SUBST(BSON_HAVE_SNPRINTF, 1)])
|
|
|
|
# Check for strlcpy()
|
|
AC_SUBST(BSON_HAVE_STRLCPY, 0)
|
|
AC_CHECK_FUNC(strlcpy, [AC_SUBST(BSON_HAVE_STRLCPY, 1)])
|
|
|
|
# Check for struct timespec
|
|
AC_SUBST(BSON_HAVE_TIMESPEC, 0)
|
|
AC_CHECK_TYPE([struct timespec], [AC_SUBST(BSON_HAVE_TIMESPEC, 1)], [], [#include <time.h>])
|
|
|
|
# Check for clock_gettime and if it needs -lrt
|
|
AC_SUBST(BSON_HAVE_CLOCK_GETTIME, 0)
|
|
AC_SEARCH_LIBS([clock_gettime], [rt], [AC_SUBST(BSON_HAVE_CLOCK_GETTIME, 1)])
|
|
# Check if math functions need -lm
|
|
AC_SEARCH_LIBS([floor], [m])
|
|
|
|
# Check for gmtime_r()
|
|
AC_SUBST(BSON_HAVE_GMTIME_R, 0)
|
|
AC_CHECK_FUNC(gmtime_r, [AC_SUBST(BSON_HAVE_GMTIME_R, 1)])
|
|
|
|
# Check for rand_r()
|
|
AC_SUBST(BSON_HAVE_RAND_R, 0)
|
|
AC_CHECK_FUNC(rand_r, [AC_SUBST(BSON_HAVE_RAND_R, 1)])
|
|
|
|
# Check for arc4random_buf()
|
|
AC_SUBST(BSON_HAVE_ARC4RANDOM_BUF, 0)
|
|
AC_CHECK_FUNC(arc4random_buf, [AC_SUBST(BSON_HAVE_ARC4RANDOM_BUF, 1)])
|
|
|
|
# Check for pthreads. We might need to make this better to handle mingw,
|
|
# but I actually think it is okay to just check for it even though we will
|
|
# use win32 primatives.
|
|
AX_PTHREAD([
|
|
PHP_MONGODB_BUNDLED_CFLAGS="$PHP_MONGODB_BUNDLED_CFLAGS $PTHREAD_CFLAGS"
|
|
PHP_EVAL_LIBLINE([$PTHREAD_LIBS],[MONGODB_SHARED_LIBADD])
|
|
|
|
# PTHREAD_CFLAGS may come back as "-pthread", which should also be used when
|
|
# linking. We can trust PHP_EVAL_LIBLINE to ignore other values.
|
|
PHP_EVAL_LIBLINE([$PTHREAD_CFLAGS],[MONGODB_SHARED_LIBADD])
|
|
],[
|
|
AC_MSG_ERROR([libbson requires pthreads on non-Windows platforms.])
|
|
])
|
|
|
|
|
|
# The following is borrowed from the guile configure script.
|
|
#
|
|
# On past versions of Solaris, believe 8 through 10 at least, you
|
|
# had to write "pthread_once_t foo = { PTHREAD_ONCE_INIT };".
|
|
# This is contrary to POSIX:
|
|
# http://www.opengroup.org/onlinepubs/000095399/functions/pthread_once.html
|
|
# Check here if this style is required.
|
|
#
|
|
# glibc (2.3.6 at least) works both with or without braces, so the
|
|
# test checks whether it works without.
|
|
#
|
|
AC_SUBST(BSON_PTHREAD_ONCE_INIT_NEEDS_BRACES, 0)
|
|
AC_CACHE_CHECK([whether PTHREAD_ONCE_INIT needs braces],
|
|
bson_cv_need_braces_on_pthread_once_init,
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <pthread.h>
|
|
pthread_once_t foo = PTHREAD_ONCE_INIT;]])],
|
|
[bson_cv_need_braces_on_pthread_once_init=no],
|
|
[bson_cv_need_braces_on_pthread_once_init=yes])])
|
|
if test "$bson_cv_need_braces_on_pthread_once_init" = yes; then
|
|
AC_SUBST(BSON_PTHREAD_ONCE_INIT_NEEDS_BRACES, 1)
|
|
fi
|