diff options
author | Guy Harris <guy@alum.mit.edu> | 2013-12-13 02:59:16 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2013-12-13 02:59:16 +0000 |
commit | e21fd7c0ceb6143a371f780aa044cd43861db975 (patch) | |
tree | 9f53262bf5f5379f8adccdebdf0aa3347f87da4a /configure.ac | |
parent | ed9865a779df1ab283aab8b69b5bcb51db4c079a (diff) | |
download | wireshark-e21fd7c0ceb6143a371f780aa044cd43861db975.tar.gz wireshark-e21fd7c0ceb6143a371f780aa044cd43861db975.tar.bz2 wireshark-e21fd7c0ceb6143a371f780aa044cd43861db975.zip |
Add a "captype" file that just reports the type of a capture file, based
on what libwiretap thinks it is.
Update some comments to reflect the death of the hack used to include
(libwiretap) plugin support in programs not built with libwireshark.
svn path=/trunk/; revision=54015
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6ad85ae50b..beecdbfcd7 100644 --- a/configure.ac +++ b/configure.ac @@ -1803,6 +1803,24 @@ AC_SUBST(capinfos_bin) AC_SUBST(capinfos_man) +# Enable/disable captype + +AC_ARG_ENABLE(captype, + AC_HELP_STRING( [--enable-captype], + [build captype @<:@default=yes@:>@]), + enable_captype=$enableval,enable_captype=yes) + +if test "x$enable_captype" = "xyes" ; then + captype_bin="captype\$(EXEEXT)" + captype_man="captype.1" +else + captype_bin="" + captype_man="" +fi +AC_SUBST(captype_bin) +AC_SUBST(captype_man) + + # Enable/disable mergecap AC_ARG_ENABLE(mergecap, @@ -2985,6 +3003,7 @@ echo " Build wireshark (Gtk+) : $have_gtk""$gtk_lib_message" echo " Build wireshark-qt : $enable_qtshark" echo " Build tshark : $enable_tshark" echo " Build capinfos : $enable_capinfos" +echo " Build captype : $enable_captype" echo " Build editcap : $enable_editcap" echo " Build dumpcap : $enable_dumpcap" echo " Build mergecap : $enable_mergecap" |