0
0
mirror of https://gitlab.torproject.org/tpo/core/tor.git synced 2024-09-20 12:22:14 +02:00

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.
This commit is contained in:
Anthony G. Basile 2015-01-24 19:10:46 -05:00 committed by Nick Mathewson
parent 8f9fb3e8fa
commit 5bf0809744

View File

@ -126,7 +126,7 @@ AC_ARG_ENABLE(systemd,
# systemd support # systemd support
if test x$enable_systemd = xfalse ; then if test x$enable_systemd = xno ; then
have_systemd=no; have_systemd=no;
else else
PKG_CHECK_MODULES(SYSTEMD, PKG_CHECK_MODULES(SYSTEMD,