diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-11-05 18:28:28 -0800 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-11-05 18:42:12 -0800 |
commit | 15ffe9f51b122494a2b292b3ab1f199d3e81600c (patch) | |
tree | cfab89f806813246c5263f156046abf5c7b80f99 | |
parent | 6b109919f6e1593b27b0760bb56a65b43fb86ea4 (diff) |
configure.ac: Notify user about which SHA1 implementation is being used
Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
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) |