aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeOptions.txt
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-07-12 17:19:17 +0000
committerGuy Harris <guy@alum.mit.edu>2011-07-12 17:19:17 +0000
commit7abaf305ba35c8ea3327de454ea562ddf6b94d04 (patch)
treedd4a69c35594c20378659f666d248afc299cc9ea /CMakeOptions.txt
parenta624f208592099fa8fd758bbfd79a8d9c75b99ec (diff)
Add a comment noting why AirPcap support cannot be unconditionally
enabled by default (i.e., it's Windows-only). InterCap the name. svn path=/trunk/; revision=37992
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r--CMakeOptions.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt
index 2e9ffcd839..1c3a544f13 100644
--- a/CMakeOptions.txt
+++ b/CMakeOptions.txt
@@ -18,7 +18,13 @@ option(AUTOGEN_pidl "Autogenerate pidl dissectors" OFF)
option(DISABLE_WERROR "Do not treat Warnings as errors" OFF)
option(ENABLE_EXTRA_GCC_CHECKS "Do additional -W checks in GCC (disables -Werror)" OFF)
option(ENABLE_GTK3 "Use GTK3 instead of GTK2 (does not compile yet)" OFF)
-option(ENABLE_AIRPCAP "Enable Airpcap support" OFF)
+#
+# Do not make this the default on UN*X; AirPcap support is available
+# only on Windows. It might be nice to have it, on Windows, check
+# whether the AirPcap SDK is available, and turn AirPcap support on
+# only if it is.
+#
+option(ENABLE_AIRPCAP "Enable AirPcap support" OFF)
# todo
option(ENABLE_STATIC "Build a static version of Wireshark (not yet working)" OFF)
option(ENABLE_PLUGINS "Build with plugins" ON)