Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 6111] Build fails when HAVE_AIRPCAP: uninit'ed var in main

Date: Mon, 11 Jul 2011 19:51:28 -0700 (PDT)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6111

Tony Trinh <tony19@xxxxxxxxx> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tony19@xxxxxxxxx

--- Comment #2 from Tony Trinh <tony19@xxxxxxxxx> 2011-07-11 22:51:27 EDT ---
Actually, the default is for ENABLE_AIRPCAP to be ON:
http://anonsvn.wireshark.org/viewvc/trunk/CMakeOptions.txt?revision=37701&view=markup#l21

...which in turn sets HAVE_AIRPCAP to 1:
http://anonsvn.wireshark.org/viewvc/trunk/CMakeLists.txt?revision=37745&view=markup#l366


This is equivalent to the configure script (other than the default OFF):
http://anonsvn.wireshark.org/viewvc/trunk/configure.in?revision=37967&view=markup#l1688

AC_ARG_ENABLE(airpcap,
  AC_HELP_STRING( [--enable-airpcap],
                  [use airpcap in wireshark.  @<:@default=no@:>@]),
  enable_airpcap=$enableval
  if test x$enable_airpcap != xno; then
    AC_DEFINE(HAVE_AIRPCAP, 1, [Enable AirPcap])
  fi
)


None of these appear to check for the AirPcap SDK.

-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.