diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-03-28 18:32:03 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-03-28 18:32:03 +0000 |
commit | 2b86d46d706b3f60e3804b6ee9348752aa601b9a (patch) | |
tree | 73171006c6a2e830fe9b6742f081ab1e0b24131c /wiretap/configure.in | |
parent | 4932ef3dcc5b76692e982fbb4d17153e998f69ba (diff) | |
download | wireshark-2b86d46d706b3f60e3804b6ee9348752aa601b9a.tar.gz wireshark-2b86d46d706b3f60e3804b6ee9348752aa601b9a.tar.bz2 wireshark-2b86d46d706b3f60e3804b6ee9348752aa601b9a.zip |
Jun-ichiro's IPv6 patch is merged in with ethereal and now uses the new
proto*() functions. The configure script tries to use ipv6 name resolution if
it knows the type of ipv6 stack the user has (this can be avoided with the
--disable-ipv6 switch) Additionally, the configure script now deals with wiretap
better. If the user doesn't want to compile wiretap, the wiretap is never
visited. A few unnecessary #includes were removed from some wiretap files, and
a CPP macro was moved from bpf.c to wtap.h.
svn path=/trunk/; revision=229
Diffstat (limited to 'wiretap/configure.in')
-rw-r--r-- | wiretap/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wiretap/configure.in b/wiretap/configure.in index 3151b388d9..ddadbef14d 100644 --- a/wiretap/configure.in +++ b/wiretap/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.8 1999/03/03 08:51:58 guy Exp $ +# $Id: configure.in,v 1.9 1999/03/28 18:32:02 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) @@ -7,6 +7,8 @@ AM_CONFIG_HEADER(config.h) dnl Checks for programs. AC_PROG_CC AC_PROG_RANLIB +AC_PROG_YACC +AM_PROG_LEX # If we're running gcc, add '-Wall' to CFLAGS. AC_MSG_CHECKING(to see if we can add '-Wall' to CFLAGS) |