summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.h
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2011-05-15 11:16:22 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2011-05-15 11:16:22 (GMT)
commitd74b5936a1e3ded828fbc243b9de9da47af5af92 (patch)
treed73fee262da903c82887b7ff184d3fd33004cec8 /Modules/socketmodule.h
parentaedb2823fd740dcdf64744d47eab0053324741b1 (diff)
downloadcpython-d74b5936a1e3ded828fbc243b9de9da47af5af92.zip
cpython-d74b5936a1e3ded828fbc243b9de9da47af5af92.tar.gz
cpython-d74b5936a1e3ded828fbc243b9de9da47af5af92.tar.bz2
Fix _socket compilation failures on non-Linux buildbots (cf. issue #1746656).
Diffstat (limited to 'Modules/socketmodule.h')
-rw-r--r--Modules/socketmodule.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Modules/socketmodule.h b/Modules/socketmodule.h
index f064795..db44fd3 100644
--- a/Modules/socketmodule.h
+++ b/Modules/socketmodule.h
@@ -59,9 +59,12 @@ typedef int socklen_t;
#include <bluetooth.h>
#endif
+#ifdef HAVE_NET_IF_H
+# include <net/if.h>
+#endif
+
#ifdef HAVE_NETPACKET_PACKET_H
# include <sys/ioctl.h>
-# include <net/if.h>
# include <netpacket/packet.h>
#endif