Add configure checks for sys/socket.h
[deb_libnfs.git] / lib / libnfs-sync.c
index 5ca7c66dad1004615e5f5cfd4cb9e5d62b2d23ef..836e1354eaef5683a75c3cdde991390d1e3a0834 100644 (file)
@@ -30,9 +30,7 @@
 #else
 #include <strings.h>
 #include <netdb.h>
-#include <sys/socket.h>
 #include <net/if.h>
-#include <netinet/in.h>
 #endif /*WIN32*/
 
 #ifdef ANDROID
 #include <sys/ioctl.h>
 #endif
 
+#ifdef HAVE_SYS_SOCKET_H
+#include <sys/socket.h>
+#endif
+
 #ifdef HAVE_POLL_H
 #include <poll.h>
 #endif
 #include <unistd.h>
 #endif
 
+#ifdef HAVE_NETINET_IN_H
+#include <netinet/in.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>