Fix getifaddrs() for BSD
authorSteven Barth <steven@midlink.org>
Sat, 11 Jul 2009 10:21:27 +0000 (10:21 +0000)
committerSteven Barth <steven@midlink.org>
Sat, 11 Jul 2009 10:21:27 +0000 (10:21 +0000)
libs/nixio/src/address.c

index 3547f19..41ab8a3 100644 (file)
@@ -18,6 +18,7 @@
 
 #include "nixio.h"
 #include <sys/types.h>
+#include <sys/param.h>
 #include <errno.h>
 #include <string.h>
 
@@ -346,6 +347,9 @@ static int nixio_sock_getpeername(lua_State *L) {
 }
 
 #if defined(__linux__) || defined(BSD)
+#ifdef BSD
+#include <net/if.h>
+#endif
 #include <ifaddrs.h>
 
 static int nixio_getifaddrs(lua_State *L) {