]> granicus.if.org Git - php/commitdiff
As far as I can tell, the AC_CHECK_MEMBER could not succeed,
authorSascha Schumann <sas@php.net>
Sun, 12 May 2002 17:28:12 +0000 (17:28 +0000)
committerSascha Schumann <sas@php.net>
Sun, 12 May 2002 17:28:12 +0000 (17:28 +0000)
because it does not include <sys/socket.h> which is necessary
for the definition of struct msghdr.  This include file is not
part of ac_includes_default.

Regardless, AC_CHECK_MEMBER is a autoconf-2.5x macro and thus we
expand it here for 2.13 compatibility.

ext/sockets/config.m4

index 3229fce9078cebb3db2eaa32c339eea2a338b2a5..cdfa985aef18f4658dd27ccb29239f3bcace9c3d 100644 (file)
@@ -7,10 +7,15 @@ PHP_ARG_ENABLE(sockets, whether to enable sockets support,
 
 if test "$PHP_SOCKETS" != "no"; then
 
-  AC_CHECK_FUNCS(hstrerror)
-  AC_CHECK_HEADERS(netdb.h netinet/tcp.h sys/un.h errno.h)
-  AC_CHECK_MEMBER(struct msghdr.msg_flags, , AC_DEFINE(MISSING_MSGHDR_MSGFLAGS, 1, [ ]))
-  AC_DEFINE(HAVE_SOCKETS, 1, [ ])
+  AC_CHECK_FUNCS([hstrerror])
+  AC_CHECK_HEADERS([netdb.h netinet/tcp.h sys/un.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, [ ])
 
-  PHP_NEW_EXTENSION(sockets, sockets.c, $ext_shared)
+  PHP_NEW_EXTENSION([sockets], [sockets.c], [$ext_shared])
 fi