From 15ffe9f51b122494a2b292b3ab1f199d3e81600c Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Thu, 5 Nov 2009 18:28:28 -0800 Subject: [PATCH] configure.ac: Notify user about which SHA1 implementation is being used Signed-off-by: Jeremy Huddleston --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index f8dc55b98..fd2118ad3 100644 --- a/configure.ac +++ b/configure.ac @@ -1364,9 +1364,11 @@ if test "x$with_sha1" = xlibcrypto; then SHA1_CFLAGS="$OPENSSL_CFLAGS" fi fi +AC_MSG_CHECKING([for SHA1 implementation]) if test "x$with_sha1" = x; then AC_MSG_ERROR([No suitable SHA1 implementation found]) fi +AC_MSG_RESULT([$with_sha1]) AC_SUBST(SHA1_LIBS) AC_SUBST(SHA1_CFLAGS)