mirror of
https://github.com/nginx/nginx.git
synced 2026-08-31 09:06:25 +00:00
nginx-0.0.10-2004-09-14-19:55:24 import
This commit is contained in:
parent
562626ae6c
commit
e2ff3ea920
7 changed files with 137 additions and 25 deletions
|
|
@ -4,7 +4,7 @@ CORE_DEPS="$UNIX_DEPS $SOLARIS_DEPS"
|
|||
CORE_SRCS="$UNIX_SRCS $SOLARIS_SRCS "
|
||||
EVENT_MODULES="$EVENT_MODULES"
|
||||
|
||||
CORE_LIBS="$CORE_LIBS -lsocket -lnsl"
|
||||
CORE_LIBS="$CORE_LIBS -lsocket -lnsl -lrt"
|
||||
|
||||
# the Solaris's make support
|
||||
MAKE_SL=YES
|
||||
|
|
|
|||
32
auto/summary
32
auto/summary
|
|
@ -8,32 +8,32 @@ if [ $USE_PCRE = DISABLED ]; then
|
|||
|
||||
else
|
||||
case $PCRE in
|
||||
YES) echo " using system PCRE library" ;;
|
||||
NONE) echo " PCRE library is not used" ;;
|
||||
NO) echo " PCRE library is not found" ;;
|
||||
*) echo " using PCRE library: $PCRE" ;;
|
||||
YES) echo " + using system PCRE library" ;;
|
||||
NONE) echo " + PCRE library is not used" ;;
|
||||
NO) echo " + PCRE library is not found" ;;
|
||||
*) echo " + using PCRE library: $PCRE" ;;
|
||||
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" ;;
|
||||
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" ;;
|
||||
NO) echo " OpenSSL library is not found" ;;
|
||||
*) echo " using OpenSSL library: $OPENSSL" ;;
|
||||
YES) echo " + using system OpenSSL library" ;;
|
||||
NONE) echo " + OpenSSL library is not used" ;;
|
||||
NO) echo " + OpenSSL library is not found" ;;
|
||||
*) echo " + using OpenSSL library: $OPENSSL" ;;
|
||||
esac
|
||||
|
||||
case $ZLIB in
|
||||
YES) echo " using system zlib library" ;;
|
||||
NONE) echo " zlib library is not used" ;;
|
||||
NO) echo " zlib library is not found" ;;
|
||||
*) echo " using zlib library: $ZLIB" ;;
|
||||
YES) echo " + using system zlib library" ;;
|
||||
NONE) echo " + zlib library is not used" ;;
|
||||
NO) echo " + zlib library is not found" ;;
|
||||
*) echo " + using zlib library: $ZLIB" ;;
|
||||
esac
|
||||
|
||||
echo
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue