Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'auto/summary')
-rw-r--r--auto/summary20
1 files changed, 13 insertions, 7 deletions
diff --git a/auto/summary b/auto/summary
index 39a159983..53455cddc 100644
--- a/auto/summary
+++ b/auto/summary
@@ -28,13 +28,6 @@ else
esac
fi
-case $MD5 in
- YES) echo " + md5: using system $MD5_LIB library" ;;
- NONE) echo " + md5 library is not used" ;;
- NO) echo " + md5 library is not found" ;;
- *) echo " + using md5 library: $MD5" ;;
-esac
-
case $OPENSSL in
YES) echo " + using system OpenSSL library" ;;
NONE) echo " + OpenSSL library is not used" ;;
@@ -42,6 +35,19 @@ case $OPENSSL in
*) echo " + using OpenSSL library: $OPENSSL" ;;
esac
+case $MD5 in
+ YES)
+ case $OPENSSL in
+ NONE|NO) echo " + md5: using system $MD5_LIB library" ;;
+ *) echo " + md5: using OpenSSL library" ;;
+ esac
+ ;;
+
+ NONE) echo " + md5 library is not used" ;;
+ NO) echo " + md5 library is not found" ;;
+ *) echo " + using md5 library: $MD5" ;;
+esac
+
case $ZLIB in
YES) echo " + using system zlib library" ;;
NONE) echo " + zlib library is not used" ;;