diff options
author | Daniel Salzman <daniel.salzman@nic.cz> | 2024-04-09 16:37:14 +0200 |
---|---|---|
committer | Daniel Salzman <daniel.salzman@nic.cz> | 2024-04-09 16:37:14 +0200 |
commit | 34c8ddadfcf752db66196f8ad1bc3d2e66cfb7f0 (patch) | |
tree | e762cbeba7c7cc54b025f1dae8177c34f53470f5 /configure.ac | |
parent | backup: '+keysonly' silently uses all defaults as 'off' (diff) | |
download | knot-34c8ddadfcf752db66196f8ad1bc3d2e66cfb7f0.tar.xz knot-34c8ddadfcf752db66196f8ad1bc3d2e66cfb7f0.zip |
configure: add missing setting of ENABLE_SYSTEMD
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1e3276340..365395b76 100644 --- a/configure.ac +++ b/configure.ac @@ -269,6 +269,9 @@ AS_IF([test "$enable_systemd" != "no"],[ [*],[AC_MSG_ERROR([Invalid value of --enable-systemd.])]) ]) +AS_IF([test "$enable_systemd" = "yes"],[ + AC_DEFINE([ENABLE_SYSTEMD], [1], [Use systemd integration.])]) + AS_IF([test "$enable_dbus" != "no"],[ AS_CASE([$enable_dbus], [auto],[AS_IF([test "$enable_systemd" = "yes"], |