diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-11-12 21:39:22 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-11-12 21:39:22 +0000 |
commit | c90b202b22f931b39d160ba973d5a6513982497e (patch) | |
tree | 0438142e4fa8f34cf7635a8142403361350800d0 /wiretap/configure.in | |
parent | 4b2b211cd580b9518240b958c88c5c57c6d11ac9 (diff) | |
download | wireshark-c90b202b22f931b39d160ba973d5a6513982497e.tar.gz wireshark-c90b202b22f931b39d160ba973d5a6513982497e.tar.bz2 wireshark-c90b202b22f931b39d160ba973d5a6513982497e.zip |
Added a patch to wiretap from Guy Harris to help compile wiretap in
different situations. I also fixed bootp so that is properly handles
unknown BOOTP options.
svn path=/trunk/; revision=85
Diffstat (limited to 'wiretap/configure.in')
-rw-r--r-- | wiretap/configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/wiretap/configure.in b/wiretap/configure.in index b52222fec2..6c2f0bbe76 100644 --- a/wiretap/configure.in +++ b/wiretap/configure.in @@ -1,10 +1,12 @@ -# $Id: configure.in,v 1.1 1998/11/12 00:06:45 gram Exp $ +# $Id: configure.in,v 1.2 1998/11/12 21:39:22 gram Exp $ dnl Process this file with autoconf to produce a configure script. AC_INIT(wtap.c) AM_INIT_AUTOMAKE(libwtap.a, 0.0.0) AM_CONFIG_HEADER(config.h) -#AC_PROG_RANLIB +dnl Checks for programs. +AC_PROG_CC +AC_PROG_RANLIB # Pcap checks (copied from ethereal) AC_CHECK_HEADER(pcap.h,, AC_MSG_ERROR(Header file pcap.h not found.)) |