aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeOptions.txt
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2018-09-05 16:29:34 -0700
committerAnders Broman <a.broman58@gmail.com>2018-10-01 08:58:13 +0000
commitf69108b84e9f996641d9c920fffc19853115f56b (patch)
tree76d5045fb254b7f67c73a5ca0b12f55c0edda9a1 /CMakeOptions.txt
parente1ef8f6a408cb5a017ff5d15deddcb2727ddf90e (diff)
Add a systemd Journal Export extcap.
Add an sdjournal extcap, which reads journal entries using the sd-journal API and dumps them as journal Export Format records. Change-Id: I17ccfa88ab5d053c16c869cd26e580d84022502e Reviewed-on: https://code.wireshark.org/review/29479 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r--CMakeOptions.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt
index 6d429b57a5..c267c00884 100644
--- a/CMakeOptions.txt
+++ b/CMakeOptions.txt
@@ -16,12 +16,19 @@ option(BUILD_dftest "Build dftest" ON)
option(BUILD_corbaidl2wrs "Build corbaidl2wrs" OFF)
option(BUILD_dcerpcidl2wrs "Build dcerpcidl2wrs" ON)
option(BUILD_xxx2deb "Build xxx2deb" OFF)
+
option(BUILD_androiddump "Build androiddump" ON)
option(BUILD_sshdump "Build sshdump" ON)
option(BUILD_ciscodump "Build ciscodump" ON)
option(BUILD_dpauxmon "Build dpauxmon" ON)
option(BUILD_randpktdump "Build randpktdump" ON)
+if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ option(BUILD_sdjournal "Build sdjournal" ON)
+else()
+ option(BUILD_sdjournal "Build sdjournal" OFF)
+endif()
option(BUILD_udpdump "Build udpdump" ON)
+
option(BUILD_sharkd "Build sharkd" ON)
if(WIN32)
option(BUILD_fuzzshark "Build fuzzshark" OFF)