diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-07-13 03:31:40 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-07-13 03:31:40 +0000 |
commit | 8369394c079da21a2c8196f376f0e82a0bf045ba (patch) | |
tree | a79ca80908dd3f73096cd3ebec7657b047d9ad6f /configure.in | |
parent | 57e49071ef1da141b01312163bd9afeaddcb4c2f (diff) | |
download | wireshark-8369394c079da21a2c8196f376f0e82a0bf045ba.tar.gz wireshark-8369394c079da21a2c8196f376f0e82a0bf045ba.tar.bz2 wireshark-8369394c079da21a2c8196f376f0e82a0bf045ba.zip |
Look for <sys/socket.h>, not <sys/socket>.
svn path=/trunk/; revision=361
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 805cd36b81..a22fad95ac 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.30 1999/07/13 02:52:48 gram Exp $ +# $Id: configure.in,v 1.31 1999/07/13 03:31:39 guy Exp $ dnl Process this file with autoconf to produce a configure script. AC_INIT(etypes.h) @@ -80,7 +80,7 @@ fi dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h unistd.h stdarg.h netdb.h) -AC_CHECK_HEADERS(sys/sockio.h sys/types.h netinet/in.h sys/socket net/if.h) +AC_CHECK_HEADERS(sys/sockio.h sys/types.h netinet/in.h sys/socket.h net/if.h) dnl SNMP Check AC_ARG_ENABLE(snmp, |