aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-04-05 22:51:44 +0000
committerGuy Harris <guy@alum.mit.edu>1999-04-05 22:51:44 +0000
commit271f2a1ffffc12048e0e76c8d76d628ea0b732fb (patch)
tree6f023f7d986cd220d9991772d261e845f493d507 /configure.in
parent2400bb0453509c90ae6bfdc797e464761a45b473 (diff)
downloadwireshark-271f2a1ffffc12048e0e76c8d76d628ea0b732fb.tar.gz
wireshark-271f2a1ffffc12048e0e76c8d76d628ea0b732fb.tar.bz2
wireshark-271f2a1ffffc12048e0e76c8d76d628ea0b732fb.zip
Get rid of include of <strings.h> from "util.c", as it's not needed, and
change include of <strings.h> in "menu.c" to include <string.h>, the latter being the ANSI standard include file for string functions; that eliminates all use of <strings.h< so get rid of test for its existence in "configure.in" as well. svn path=/trunk/; revision=239
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 1d677f537d..f68e509bdf 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.20 1999/03/28 18:31:58 gram Exp $
+# $Id: configure.in,v 1.21 1999/04/05 22:51:43 guy Exp $
dnl Process this file with autoconf to produce a configure script.
AC_INIT(etypes.h)
@@ -114,7 +114,7 @@ fi
dnl Checks for header files.
AC_HEADER_STDC
-AC_CHECK_HEADERS(fcntl.h strings.h sys/ioctl.h sys/time.h unistd.h stdarg.h)
+AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h unistd.h stdarg.h)
AC_CHECK_HEADERS(sys/sockio.h sys/types.h netinet/in.h)