/ext/sockets/config.m4
https://github.com/source-comment/php7 · m4 · 95 lines · 72 code · 13 blank · 10 comment · 0 complexity · f4bdfe585b3582b9e7a32c9126a7b78c MD5 · raw file
- dnl
- dnl $Id$
- dnl
- PHP_ARG_ENABLE(sockets, whether to enable sockets support,
- [ --enable-sockets Enable sockets support])
- if test "$PHP_SOCKETS" != "no"; then
- dnl Check for struct cmsghdr
- AC_CACHE_CHECK([for struct cmsghdr], ac_cv_cmsghdr,
- [
- AC_TRY_COMPILE([
- #include <sys/types.h>
- #include <sys/socket.h>], [struct cmsghdr s; s], ac_cv_cmsghdr=yes, ac_cv_cmsghdr=no)
- ])
- if test "$ac_cv_cmsghdr" = yes; then
- AC_DEFINE(HAVE_CMSGHDR,1,[Whether you have struct cmsghdr])
- fi
- AC_CHECK_FUNCS([hstrerror socketpair if_nametoindex if_indextoname])
- AC_CHECK_HEADERS([netdb.h netinet/tcp.h sys/un.h sys/sockio.h errno.h])
- AC_TRY_COMPILE([
- #include <sys/types.h>
- #include <sys/socket.h>
- ], [static struct msghdr tp; int n = (int) tp.msg_flags; return n],[],
- [AC_DEFINE(MISSING_MSGHDR_MSGFLAGS, 1, [ ])]
- )
- AC_DEFINE([HAVE_SOCKETS], 1, [ ])
- dnl Check for fied ss_family in sockaddr_storage (missing in AIX until 5.3)
- AC_CACHE_CHECK([for field ss_family in struct sockaddr_storage], ac_cv_ss_family,
- [
- AC_TRY_COMPILE([
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <netdb.h>
- ], [struct sockaddr_storage sa_store; sa_store.ss_family = AF_INET6;],
- ac_cv_ss_family=yes, ac_cv_ss_family=no)
- ])
- if test "$ac_cv_ss_family" = yes; then
- AC_DEFINE(HAVE_SA_SS_FAMILY,1,[Whether you have sockaddr_storage.ss_family])
- fi
- dnl Check for AI_V4MAPPED flag
- AC_CACHE_CHECK([if getaddrinfo supports AI_V4MAPPED],[ac_cv_gai_ai_v4mapped],
- [
- AC_TRY_COMPILE([
- #include <netdb.h>
- ], [int flag = AI_V4MAPPED;],
- ac_cv_gai_ai_v4mapped=yes, ac_cv_gai_ai_v4mapped=no)
- ])
- if test "$ac_cv_gai_ai_v4mapped" = yes; then
- AC_DEFINE(HAVE_AI_V4MAPPED,1,[Whether you have AI_V4MAPPED])
- fi
- dnl Check for AI_ALL flag
- AC_CACHE_CHECK([if getaddrinfo supports AI_ALL],[ac_cv_gai_ai_all],
- [
- AC_TRY_COMPILE([
- #include <netdb.h>
- ], [int flag = AI_ALL;],
- ac_cv_gai_ai_all=yes, ac_cv_gai_ai_all=no)
- ])
- if test "$ac_cv_gai_ai_all" = yes; then
- AC_DEFINE(HAVE_AI_ALL,1,[Whether you have AI_ALL])
- fi
- dnl Check for AI_IDN flag
- AC_CACHE_CHECK([if getaddrinfo supports AI_IDN],[ac_cv_gai_ai_idn],
- [
- AC_TRY_COMPILE([
- #include <netdb.h>
- ], [int flag = AI_IDN;],
- ac_cv_gai_ai_idn=yes, ac_cv_gai_ai_idn=no)
- ])
- if test "$ac_cv_gai_ai_idn" = yes; then
- AC_DEFINE(HAVE_AI_IDN,1,[Whether you have AI_IDN])
- fi
- PHP_SOCKETS_CFLAGS=-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1
- case $host_alias in
- *darwin*) PHP_SOCKETS_CFLAGS="$PHP_SOCKETS_CFLAGS -D__APPLE_USE_RFC_3542"
- esac
- PHP_NEW_EXTENSION(
- [sockets],
- [sockets.c multicast.c conversions.c sockaddr_conv.c sendrecvmsg.c],
- [$ext_shared],,
- $PHP_SOCKETS_CFLAGS)
- PHP_INSTALL_HEADERS([ext/sockets/], [php_sockets.h])
- fi