From fd69e62aac818aa349ce4adab9f386f19954d6db Mon Sep 17 00:00:00 2001 From: Jeff Morriss Date: Tue, 27 Mar 2012 02:37:42 +0000 Subject: Revert r37423: the intent of r34356 was to enable Airpcap by default, it just didn't work as intended. Then make it so we build with Airpcap by default. This should hopefully be the end of https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4879 svn path=/trunk/; revision=41790 --- configure.in | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 574e41fe8c..cb09a4dc12 100644 --- a/configure.in +++ b/configure.in @@ -1731,12 +1731,18 @@ AC_DEFINE(WS_VAR_IMPORT, extern, [Define as the string to precede external varia AC_DEFINE(WS_MSVC_NORETURN,, [Define as the string to precede declarations of routines that never return]) AC_ARG_ENABLE(airpcap, +[ AC_HELP_STRING( [--enable-airpcap], - [use AirPcap in Wireshark @<:@default=no@:>@]), + [use AirPcap in Wireshark @<:@default=yes@:>@]) +],[ enable_airpcap=$enableval if test x$enable_airpcap != xno; then AC_DEFINE(HAVE_AIRPCAP, 1, [Enable AirPcap]) fi +],[ + enable_airpcap=yes + AC_DEFINE(HAVE_AIRPCAP, 1, [Enable AirPcap]) +] ) dnl Checks for typedefs, structures, and compiler characteristics. -- cgit v1.2.3