From: Frederic Marchal Date: Fri, 25 Jan 2013 19:10:12 +0000 (+0100) Subject: Check for winsock.h X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58dfd4256368f2ddb53ce4ce8f8f0a1860a9652e;p=thirdparty%2Fsarg.git Check for winsock.h The header file is required to compile sarg on windows but its availability was not checked in the configuration script. --- diff --git a/configure.in b/configure.in index 44eb2ce..eb6ccb4 100644 --- a/configure.in +++ b/configure.in @@ -76,7 +76,8 @@ AC_HEADER_STDC AC_CHECK_HEADERS(stdio.h stdlib.h string.h strings.h sys/time.h time.h unistd.h sys/dirent.h \ dirent.h sys/types.h sys/socket.h netdb.h arpa/inet.h netinet/in.h sys/stat.h \ ctype.h errno.h sys/resource.h sys/wait.h stdarg.h inttypes.h limits.h locale.h \ - execinfo.h math.h libintl.h libgen.h stdbool.h getopt.h fcntl.h fnmatch.h) + execinfo.h math.h libintl.h libgen.h stdbool.h getopt.h fcntl.h fnmatch.h \ + winsock.h) if test $ac_cv_header_getopt_h = "no" ; then AC_MSG_ERROR("getopt.h is required to compile sarg")