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/module')
-rw-r--r--auto/module18
1 files changed, 15 insertions, 3 deletions
diff --git a/auto/module b/auto/module
index 16a816f67..3b00a07f8 100644
--- a/auto/module
+++ b/auto/module
@@ -48,10 +48,14 @@ if [ "$ngx_module_link" = DYNAMIC ]; then
fi
;;
- PCRE | OPENSSL | MD5 | SHA1 | ZLIB)
+ PCRE | OPENSSL | ZLIB)
eval USE_${lib}=YES
;;
+ MD5 | SHA1)
+ # obsolete
+ ;;
+
*)
libs="$libs $lib"
;;
@@ -79,10 +83,14 @@ elif [ "$ngx_module_link" = YES ]; then
do
case $lib in
- PCRE | OPENSSL | MD5 | SHA1 | ZLIB | LIBXSLT | LIBGD | PERL | GEOIP)
+ PCRE | OPENSSL | ZLIB | LIBXSLT | LIBGD | PERL | GEOIP)
eval USE_${lib}=YES
;;
+ MD5 | SHA1)
+ # obsolete
+ ;;
+
*)
CORE_LIBS="$CORE_LIBS $lib"
;;
@@ -109,10 +117,14 @@ elif [ "$ngx_module_link" = ADDON ]; then
do
case $lib in
- PCRE | OPENSSL | MD5 | SHA1 | ZLIB | LIBXSLT | LIBGD | PERL | GEOIP)
+ PCRE | OPENSSL | ZLIB | LIBXSLT | LIBGD | PERL | GEOIP)
eval USE_${lib}=YES
;;
+ MD5 | SHA1)
+ # obsolete
+ ;;
+
*)
CORE_LIBS="$CORE_LIBS $lib"
;;