diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2004-10-20 18:50:58 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2004-10-20 18:50:58 +0000 |
commit | 0f80fa5c7d747a026d4fd30220a98d087cef53b1 (patch) | |
tree | 32d5522fd1cd1a87e2803b0df458fe6fb77d99ba /configure.in | |
parent | 39de90e5da056fd473dfd0b47f4e4d06ea4aa8d3 (diff) | |
download | wireshark-0f80fa5c7d747a026d4fd30220a98d087cef53b1.tar.gz wireshark-0f80fa5c7d747a026d4fd30220a98d087cef53b1.tar.bz2 wireshark-0f80fa5c7d747a026d4fd30220a98d087cef53b1.zip |
renamed capinfo to capinfos, as the former name capinfo was already used in a program called tcprelay, so that might confuse packaging managers and users. Hopefully I got all the places need to be changed.
svn path=/trunk/; revision=12358
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/configure.in b/configure.in index 2962626627..234792caff 100644 --- a/configure.in +++ b/configure.in @@ -510,20 +510,20 @@ AC_SUBST(editcap_bin) AC_SUBST(editcap_man) -# Enable/disable capinfo +# Enable/disable capinfos -AC_ARG_ENABLE(capinfo, -[ --enable-capinfo build capinfo. [default=yes]],enable_capinfo=$enableval,enable_capinfo=yes) +AC_ARG_ENABLE(capinfos, +[ --enable-capinfos build capinfos. [default=yes]],enable_capinfos=$enableval,enable_capinfos=yes) -if test "x$enable_capinfo" = "xyes" ; then - capinfo_bin="capinfo\$(EXEEXT)" - capinfo_man="capinfo.1" +if test "x$enable_capinfos" = "xyes" ; then + capinfos_bin="capinfos\$(EXEEXT)" + capinfos_man="capinfos.1" else - capinfo_bin="" - capinfo_man="" + capinfos_bin="" + capinfos_man="" fi -AC_SUBST(capinfo_bin) -AC_SUBST(capinfo_man) +AC_SUBST(capinfos_bin) +AC_SUBST(capinfos_man) # Enable/disable mergecap @@ -1302,7 +1302,7 @@ echo "" echo "The Ethereal package has been configured with the following options." echo " Build ethereal : $enable_ethereal" echo " Build tethereal : $enable_tethereal" -echo " Build capinfo : $enable_capinfo" +echo " Build capinfos : $enable_capinfos" echo " Build editcap : $enable_editcap" echo " Build mergecap : $enable_mergecap" echo " Build text2pcap : $enable_text2pcap" |