diff options
author | Michal Labedzki <michal.labedzki@tieto.com> | 2014-11-17 19:26:12 +0100 |
---|---|---|
committer | Michal Labedzki <michal.labedzki@tieto.com> | 2014-12-15 14:25:00 +0000 |
commit | 657e42bc40ce4c0962bfdb43c625620b66ae9776 (patch) | |
tree | f3c8e2016804ba1274325d33510fc3fc30aeaf37 /CMakeOptions.txt | |
parent | fddbbdd212c264f3842bf0d070bfd0cad173dc40 (diff) | |
download | wireshark-657e42bc40ce4c0962bfdb43c625620b66ae9776.tar.gz wireshark-657e42bc40ce4c0962bfdb43c625620b66ae9776.tar.bz2 wireshark-657e42bc40ce4c0962bfdb43c625620b66ae9776.zip |
cmake: Do not hide possible options for other platforms
Change-Id: I408620cb39a25a4104e9ea562f6512f4196ae32f
Reviewed-on: https://code.wireshark.org/review/5766
Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r-- | CMakeOptions.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt index d813d2d60d..47637f5a6a 100644 --- a/CMakeOptions.txt +++ b/CMakeOptions.txt @@ -67,6 +67,8 @@ option(ENABLE_CAP "Build with Posix capabilities support" ON) option(ENABLE_CARES "Build with c-ares support" ON) if(CMAKE_SYSTEM_NAME STREQUAL "Linux") option(ENABLE_NETLINK "Build with libnl support" ON) +else() + option(ENABLE_NETLINK "Build with libnl support" OFF) endif() # todo Mostly hardcoded option(ENABLE_KERBEROS "Build with Kerberos support" ON) |