summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-05-05 04:23:34 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-05-05 04:23:34 +0200
commit56c72080acac36c153f3510cbb503b33a3c61dba (patch)
treea7824b4b96a388f2376436fe40595b07c7be7abd /cmake
parent1c71bf873aec6e352741a1652cfe5813ded8d94f (diff)
downloadfastd-56c72080acac36c153f3510cbb503b33a3c61dba.tar
fastd-56c72080acac36c153f3510cbb503b33a3c61dba.zip
Make systemd support optional again
Diffstat (limited to 'cmake')
-rw-r--r--cmake/config.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmake/config.cmake b/cmake/config.cmake
index 765f608..7a27577 100644
--- a/cmake/config.cmake
+++ b/cmake/config.cmake
@@ -11,7 +11,6 @@ set(USE_FREEBIND ${LINUX})
set(USE_PMTU ${LINUX})
set(USE_PKTINFO ${LINUX})
set(USE_PACKET_MARK ${LINUX})
-set(USE_SYSTEMD ${LINUX})
if(${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD")
set(USE_MULTIAF_BIND FALSE)
@@ -24,6 +23,10 @@ set(WITH_CAPABILITIES ${LINUX} CACHE BOOL "Include support for POSIX capabilitie
set(ENABLE_LIBSODIUM FALSE CACHE BOOL "Use libsodium instead of NaCl")
set(ENABLE_OPENSSL FALSE CACHE BOOL "Enable crypto implementations using OpenSSL")
+if(LINUX)
+ set(ENABLE_SYSTEMD TRUE CACHE BOOL "Enable systemd support")
+endif(LINUX)
+
set(WITH_CMDLINE_USER TRUE CACHE BOOL "Include support for setting user/group related options on the command line")
set(WITH_CMDLINE_LOGGING TRUE CACHE BOOL "Include support for setting logging related options on the command line")
set(WITH_CMDLINE_OPERATION TRUE CACHE BOOL "Include support for setting options related to the VPN operation (like mode, interface, encryption method) on the command line")