diff options
author | Olivier Abad <oabad@noos.fr> | 2001-08-30 19:25:39 +0000 |
---|---|---|
committer | Olivier Abad <oabad@noos.fr> | 2001-08-30 19:25:39 +0000 |
commit | e76642f9c7139dc66a1b65cc6620fc70a2de1c44 (patch) | |
tree | fcbf273d13ad2a58bcce9810f2fa713a538373a0 /configure.in | |
parent | 5715a48382eb5ea8cb2d1ab16701ccde3d4696fa (diff) | |
download | wireshark-e76642f9c7139dc66a1b65cc6620fc70a2de1c44.tar.gz wireshark-e76642f9c7139dc66a1b65cc6620fc70a2de1c44.tar.bz2 wireshark-e76642f9c7139dc66a1b65cc6620fc70a2de1c44.zip |
Patches from Frank Singleton :
- update idl2eth man page , now that "unions" are implemented ;
- support for idl2eth man page installation.
svn path=/trunk/; revision=3885
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/configure.in b/configure.in index e83763e17c..6e8e948172 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.137 2001/07/27 07:10:09 guy Exp $ +# $Id: configure.in,v 1.138 2001/08/30 19:25:37 oabad Exp $ dnl dnl Process this file with autoconf 2.13 or later to produce a dnl configure script; 2.12 doesn't generate a "configure" script that @@ -315,6 +315,21 @@ fi AC_SUBST(text2pcap_bin) AC_SUBST(text2pcap_man) +# Enable/disable idl2eth + +AC_ARG_ENABLE(idl2eth, +[ --enable-idl2eth build idl2eth. [default=yes]],,enable_idl2eth=yes) + +if test "x$enable_idl2eth" = "xyes" ; then + idl2eth_bin="idl2eth" + idl2eth_man="idl2eth.1" +else + idl2eth_bin="" + idl2eth_man="" +fi +AC_SUBST(idl2eth_bin) +AC_SUBST(idl2eth_man) + # Enable/disable dftest @@ -681,6 +696,7 @@ echo " Build tethereal : $enable_tethereal" echo " Build editcap : $enable_editcap" echo " Build mergecap : $enable_mergecap" echo " Build text2pcap : $enable_text2pcap" +echo " Build idl2eth : $enable_idl2eth" echo " Build randpkt : $enable_randpkt" echo " Build dftest : $enable_dftest" echo "" |