From: Anthony G. Basile Date: Sun, 25 Jan 2015 00:10:46 +0000 (-0500) Subject: configure.ac: fix disabling systemd notification support X-Git-Tag: tor-0.2.6.3-alpha~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bf0809744637a868265c89cf86481135019f2ac;p=thirdparty%2Ftor.git configure.ac: fix disabling systemd notification support If --disable-systemd is given, $enable_systemd is set to "no", not "false". As a result, if libsystemd is found, we still turn on systemd support even if we explicitly disable it with --disable-system. --- diff --git a/configure.ac b/configure.ac index 9aac1e8c55..af16edfe49 100644 --- a/configure.ac +++ b/configure.ac @@ -126,7 +126,7 @@ AC_ARG_ENABLE(systemd, # systemd support -if test x$enable_systemd = xfalse ; then +if test x$enable_systemd = xno ; then have_systemd=no; else PKG_CHECK_MODULES(SYSTEMD,