From 35e5d48f29ae03b2b9686109e4ed9ab8b9677ce8 Mon Sep 17 00:00:00 2001 From: Moritz Schlarb Date: Sun, 15 Nov 2015 15:29:14 +0100 Subject: Fix --with-systemd argument to configure Otherwise, specifying ''--with-systemd'' will actually lead to systemd support being disabled. Got that from https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/External-Software.html (last example). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d204ba0..5e8fad7 100644 --- a/configure.ac +++ b/configure.ac @@ -59,7 +59,7 @@ fi AC_ARG_WITH([systemd], [AS_HELP_STRING([--without-systemd], [do not build with systemd support @<:@default=yes@:>@])], - [with_systemd=no], + [], [with_systemd=yes]) AC_ARG_WITH([systemdsystemunitdir], -- cgit v1.1-32-gdbae