commit | d74b5936a1e3ded828fbc243b9de9da47af5af92 | [log] [tgz] |
---|---|---|
author | Nadeem Vawda <nadeem.vawda@gmail.com> | Sun May 15 13:16:22 2011 +0200 |
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | Sun May 15 13:16:22 2011 +0200 |
tree | d73fee262da903c82887b7ff184d3fd33004cec8 | |
parent | aedb2823fd740dcdf64744d47eab0053324741b1 [diff] |
Fix _socket compilation failures on non-Linux buildbots (cf. issue #1746656).
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 @@ #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