X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=configure.ac;h=ae69aa7f45d0de93f2e5d6b74e2bf8a1d57afb60;hb=bfebf96caf375ab52e4df396f3383851d5ed2647;hp=9018645ebaf8deca61254097f28acadae076c964;hpb=be5a98ed5bbb902af242dadc95462d1d9b424929;p=ppp.git diff --git a/configure.ac b/configure.ac index 9018645..ae69aa7 100644 --- a/configure.ac +++ b/configure.ac @@ -105,6 +105,8 @@ AC_ARG_ENABLE([systemd], AM_CONDITIONAL(WITH_SYSTEMD, test "x${enable_systemd}" = "xyes") AM_COND_IF([WITH_SYSTEMD], AC_DEFINE([SYSTEMD], 1, [Enable support for systemd notifications])) +AS_IF([test "x${enable_systemd}" = "xyes"], [ + PKG_CHECK_MODULES([systemd], [systemd])]) # # Enable Callback Protocol Support, disabled by default @@ -242,19 +244,19 @@ AS_IF([test "x${with_openssl}" != "xno" ], [ AM_CONDITIONAL([OPENSSL_HAVE_MD4], test "x${ac_cv_openssl_md4}" = "xyes") AM_COND_IF([OPENSSL_HAVE_MD4],, - AC_DEFINE([USE_MD4], 1, [Use included md4 included with pppd])) + AC_DEFINE([USE_MD4], 1, [Use MD4 included with pppd])) AM_CONDITIONAL([OPENSSL_HAVE_MD5], test "x${ac_cv_openssl_md5}" = "xyes") AM_COND_IF([OPENSSL_HAVE_MD5],, - AC_DEFINE([USE_MD5], 1, [Use included md5 included with pppd])) + AC_DEFINE([USE_MD5], 1, [Use MD5 included with pppd])) AM_CONDITIONAL([OPENSSL_HAVE_SHA], test "x${ac_cv_openssl_sha}" = "xyes") AM_COND_IF([OPENSSL_HAVE_SHA],, - AC_DEFINE([USE_SHA], 1, [Use included sha included with pppd])) + AC_DEFINE([USE_SHA], 1, [Use SHA included with pppd])) AM_CONDITIONAL([OPENSSL_HAVE_DES], test "x${ac_cv_openssl_des}" = "xyes") AM_COND_IF([OPENSSL_HAVE_DES],, - AC_DEFINE([USE_CRYPT], 1, [Use included des included with pppd])) + AC_DEFINE([USE_CRYPT], 1, [Use DES included with pppd])) # # If OpenSSL doesn't support DES, then use the one from libcrypt (glibc dropped support for this in 2.27). @@ -414,4 +416,5 @@ Features enabled IPV6CP...............: ${enable_ipv6cp:-yes} EAP-TLS..............: ${enable_eaptls:-yes} PEAP.................: ${enable_peap:-yes} + systemd notifications: ${enable_systemd:-no} "