summaryrefslogtreecommitdiffhomepage
path: root/auto/summary
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-05-16 14:32:58 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-05-16 14:32:58 +0000
commit76566f88d9984cc870aa6ccb4eca64ef43ff40d2 (patch)
tree4e879d8abf83eea97d7eed56962e7452ab0e8aba /auto/summary
parentd1c01504147cf9bbec9a6fef527db6d58bb73545 (diff)
downloadnginx-76566f88d9984cc870aa6ccb4eca64ef43ff40d2.tar.gz
nginx-76566f88d9984cc870aa6ccb4eca64ef43ff40d2.tar.bz2
simplify library autoconfigure
Diffstat (limited to '')
-rw-r--r--auto/summary16
1 files changed, 2 insertions, 14 deletions
diff --git a/auto/summary b/auto/summary
index a8ed45446..bcb8bcd12 100644
--- a/auto/summary
+++ b/auto/summary
@@ -51,26 +51,14 @@ case $OPENSSL in
esac
case $MD5 in
- YES)
- case $OPENSSL in
- NONE|NO) echo " + md5: using system $MD5_LIB library" ;;
- *) echo " + md5: using OpenSSL library" ;;
- esac
- ;;
-
+ YES) echo " + md5: using $MD5_LIB library" ;;
NONE) echo " + md5 library is not used" ;;
NO) echo " + md5 library is not found" ;;
*) echo " + using md5 library: $MD5" ;;
esac
case $SHA1 in
- YES)
- case $OPENSSL in
- NONE|NO) echo " + sha1: using system $SHA1_LIB library" ;;
- *) echo " + sha1: using OpenSSL library" ;;
- esac
- ;;
-
+ YES) echo " + sha1: using $SHA1_LIB library" ;;
NONE) echo " + sha1 library is not used" ;;
NO) echo " + sha1 library is not found" ;;
*) echo " + using sha1 library: $SHA1" ;;