diff options
author | Gregory P. Smith <greg@krypto.org> | 2011-05-15 19:18:23 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2011-05-15 19:18:23 (GMT) |
commit | 3b1f2c35f47b4ad87ddc998d91f2a041dd27bdb2 (patch) | |
tree | 411907a7a14084e210e84c1a7b565909f7ec89ea /configure | |
parent | 4d58fdb1a6bbb404910e7964c763b67f46244bba (diff) | |
download | cpython-3b1f2c35f47b4ad87ddc998d91f2a041dd27bdb2.zip cpython-3b1f2c35f47b4ad87ddc998d91f2a041dd27bdb2.tar.gz cpython-3b1f2c35f47b4ad87ddc998d91f2a041dd27bdb2.tar.bz2 |
issue #1746656: Fix for OS X. configure and #include changes so that the socket
module compiles again on OS X with its more annoying #include requirements.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 30 |
1 files changed, 29 insertions, 1 deletions
@@ -6037,7 +6037,7 @@ sys/lock.h sys/mkdev.h sys/modem.h \ sys/param.h sys/poll.h sys/select.h sys/sendfile.h sys/socket.h sys/statvfs.h \ sys/stat.h sys/termio.h sys/time.h \ sys/times.h sys/types.h sys/uio.h sys/un.h sys/utsname.h sys/wait.h pty.h \ -libutil.h sys/resource.h net/if.h netpacket/packet.h sysexits.h bluetooth.h \ +libutil.h sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \ bluetooth/bluetooth.h linux/tipc.h spawn.h util.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` @@ -6260,6 +6260,34 @@ fi fi +# On Darwin (OS X) net/if.h requires sys/socket.h to be imported first. +for ac_header in net/if.h +do : + ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "#include <stdio.h> +#ifdef STDC_HEADERS +# include <stdlib.h> +# include <stddef.h> +#else +# ifdef HAVE_STDLIB_H +# include <stdlib.h> +# endif +#endif +#ifdef HAVE_SYS_SOCKET_H +# include <sys/socket.h> +#endif + +" +if test "x$ac_cv_header_net_if_h" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_NET_IF_H 1 +_ACEOF + +fi + +done + + + # On Solaris, term.h requires curses.h for ac_header in term.h do : |