aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-01-04 16:25:51 -0800
committerGuy Harris <guy@alum.mit.edu>2015-01-05 00:27:08 +0000
commit8fe6b04ba7d174b4a8ec43ac07dfa0d9a7c9b3b7 (patch)
tree58412aa190dd82874ca387bf17f2f1600f321eb6
parent05fd11ee3dd22689eada7b5d0c66e47295ad9f88 (diff)
Note why we only default to enabling libnl on Linux.
(Just as we note why we only check for it on Linux in autotools.) Change-Id: I58c1f31fdf667ed554a4e911df13e5c864171ac0 Reviewed-on: https://code.wireshark.org/review/6315 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--CMakeOptions.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt
index 47637f5a6a..173eb39835 100644
--- a/CMakeOptions.txt
+++ b/CMakeOptions.txt
@@ -65,6 +65,9 @@ else()
endif()
option(ENABLE_CAP "Build with Posix capabilities support" ON)
option(ENABLE_CARES "Build with c-ares support" ON)
+#
+# Libnl is Linux-specific.
+#
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
option(ENABLE_NETLINK "Build with libnl support" ON)
else()