Annotation of embedaddon/php/ext/sockets/config.m4, revision 1.1.1.3

1.1       misho       1: dnl
1.1.1.2   misho       2: dnl $Id$
1.1       misho       3: dnl
                      4: 
                      5: PHP_ARG_ENABLE(sockets, whether to enable sockets support,
                      6: [  --enable-sockets        Enable sockets support])
                      7: 
                      8: if test "$PHP_SOCKETS" != "no"; then
                      9:   dnl Check for struct cmsghdr
                     10:   AC_CACHE_CHECK([for struct cmsghdr], ac_cv_cmsghdr,
                     11:   [
                     12:     AC_TRY_COMPILE([
                     13: #include <sys/types.h>
                     14: #include <sys/socket.h>], [struct cmsghdr s; s], ac_cv_cmsghdr=yes, ac_cv_cmsghdr=no)
                     15:   ])
                     16: 
                     17:   if test "$ac_cv_cmsghdr" = yes; then
                     18:     AC_DEFINE(HAVE_CMSGHDR,1,[Whether you have struct cmsghdr])
                     19:   fi 
                     20: 
1.1.1.2   misho      21:   AC_CHECK_FUNCS([hstrerror socketpair if_nametoindex if_indextoname])
                     22:   AC_CHECK_HEADERS([netdb.h netinet/tcp.h sys/un.h sys/sockio.h errno.h]) 
1.1       misho      23:   AC_TRY_COMPILE([
                     24: #include <sys/types.h>
                     25: #include <sys/socket.h>
                     26:   ], [static struct msghdr tp; int n = (int) tp.msg_flags; return n],[],
                     27:     [AC_DEFINE(MISSING_MSGHDR_MSGFLAGS, 1, [ ])]
                     28:   )
                     29:   AC_DEFINE([HAVE_SOCKETS], 1, [ ])
1.1.1.3 ! misho      30:   
        !            31:   dnl Check for fied ss_family in sockaddr_storage (missing in AIX until 5.3)
        !            32:   AC_CACHE_CHECK([for field ss_family in struct sockaddr_storage], ac_cv_ss_family,
        !            33:   [
        !            34:     AC_TRY_COMPILE([
        !            35: #include <sys/socket.h>
        !            36: #include <sys/types.h>
        !            37: #include <netdb.h>
        !            38:   ], [struct sockaddr_storage sa_store; sa_store.ss_family = AF_INET6;],
        !            39:      ac_cv_ss_family=yes, ac_cv_ss_family=no)
        !            40:   ])
        !            41:   
        !            42:   if test "$ac_cv_ss_family" = yes; then
        !            43:     AC_DEFINE(HAVE_SA_SS_FAMILY,1,[Whether you have sockaddr_storage.ss_family])
        !            44:   fi
1.1       misho      45: 
1.1.1.2   misho      46:   PHP_NEW_EXTENSION([sockets], [sockets.c multicast.c], [$ext_shared])
1.1       misho      47:   PHP_INSTALL_HEADERS([ext/sockets/], [php_sockets.h])
                     48: fi

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