From fe409a5b425558b3e1edbeaf76b0e1e97ba31295 Mon Sep 17 00:00:00 2001 From: Cedric Bail Date: Sat, 30 Mar 2013 18:09:41 +0900 Subject: [PATCH] systemd: make it require at least 192 to work. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c8b1f9b723..36fe7d64b6 100644 --- a/configure.ac +++ b/configure.ac @@ -292,7 +292,7 @@ AM_CONDITIONAL([HAVE_CRYPTO_OPENSSL], [test "${build_crypto}" = "openssl"]) # check for systemd library if requested if test "x{want_systemd}" = "xyes"; then - PKG_CHECK_MODULES([SYSTEMD], [libsystemd-daemon libsystemd-journal], + PKG_CHECK_MODULES([SYSTEMD], [libsystemd-daemon >= 192 libsystemd-journal >= 192], [want_systemd="yes"], [want_systemd="no"]) fi