Commit 90d86821 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove the sys/socket.h check. We don't really use it anyway, and socket calls...

Remove the sys/socket.h check. We don't really use it anyway, and socket calls have to be somewhere anyway
parent 7ed683d0
......@@ -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)
......
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment