From da630b8b4f0112916f915bca06bbdac7a7a95628 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 8 Sep 2012 12:40:29 -0400 Subject: Correct invalid defintion in configuring systemd support This was an unfortunate copypasta error that slipped in with 9836d6d22. The HAVE_SYSTEMD macro should only be defined based on the presence of the library, not the unit files, since the units are useless without the library support. --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 296ea75..b37ffd1 100644 --- a/configure.ac +++ b/configure.ac @@ -36,7 +36,7 @@ if test "x$with_systemd" != "xno"; then AC_MSG_ERROR([systemd support requested but libraries not found]) fi fi -AM_CONDITIONAL(HAVE_LIBSSL, [test "x$have_systemd" = "xyes"]) +AM_CONDITIONAL(HAVE_SYSTEMD, [test "x$have_systemd" = "xyes"]) AC_ARG_WITH([systemdsystemunitdir], AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]), @@ -44,7 +44,6 @@ AC_ARG_WITH([systemdsystemunitdir], if test "x$with_systemdsystemunitdir" != xno -a "x$have_systemd" != xno; then AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir]) fi -AM_CONDITIONAL(HAVE_SYSTEMD, [test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ]) # Checks for header files. AC_CHECK_HEADERS([fcntl.h],, [AC_MSG_ERROR([fcntl.h header missing])]) -- cgit v1.2.3