]> git.sesse.net Git - vlc/commitdiff
Remove the sys/socket.h check. We don't really use it anyway, and socket calls have...
authorRémi Denis-Courmont <rem@videolan.org>
Thu, 24 Jan 2008 17:07:35 +0000 (17:07 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Thu, 24 Jan 2008 17:07:35 +0000 (17:07 +0000)
configure.ac
include/vlc_network.h

index 39a9e172956e32e9a02a6aab0f6d7e8e3b2007c6..931414e809adb40ba17a61a2fa02aa91bba2b937 100644 (file)
@@ -790,12 +790,10 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[
 dnl Check for headers
 AC_CHECK_HEADERS(signal.h time.h errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h locale.h)
 AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h)
-AC_CHECK_HEADERS([arpa/inet.h netinet/in.h sys/socket.h netinet/udplite.h])
+AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h])
 AC_CHECK_HEADERS([net/if.h], [], [],
   [
-    #if HAVE_SYS_SOCKET_H
-    # include <sys/socket.h>
-    #endif
+    #include <sys/socket.h>
   ])
 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
 AC_CHECK_HEADERS(machine/param.h sys/shm.h)
index e13a8ebda356c913702a05546c7c765e218f75d4..5e09fb298416292ce71796ff73468db956c1e8db 100644 (file)
@@ -45,9 +45,7 @@ extern const char *net_strerror( int val );
 #       define IPV6_V6ONLY 27
 #   endif
 #else
-#   if HAVE_SYS_SOCKET_H
-#      include <sys/socket.h>
-#   endif
+#   include <sys/socket.h>
 #   if HAVE_NETINET_IN_H
 #      include <netinet/in.h>
 #   endif