From: Sam James Date: Sun, 8 Aug 2021 05:36:58 +0000 (+0100) Subject: configure.ac: minor phrasing tidy ups in output X-Git-Tag: ppp-2.5.0~36^2~13 X-Git-Url: http://git.ozlabs.org/?a=commitdiff_plain;ds=sidebyside;h=c8eaefff54f5fc5f2dc9d4bfe309dc9bb0176f04;p=ppp.git configure.ac: minor phrasing tidy ups in output Signed-off-by: Sam James --- diff --git a/configure.ac b/configure.ac index 9018645..819d766 100644 --- a/configure.ac +++ b/configure.ac @@ -242,19 +242,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).