aboutsummaryrefslogtreecommitdiff
path: root/auto/lib/md5
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-11-25 16:17:31 +0000
committerIgor Sysoev <igor@sysoev.ru>2004-11-25 16:17:31 +0000
commitf69060481edeaca075669b50e34ca8ec821c2401 (patch)
tree6fa6907cc2fdfe0ac6bcdf7f63e76a7f8b41f33f /auto/lib/md5
parent865a7de474a13c5f1202f97fac31565f33a5e1a1 (diff)
downloadnginx-release-0.1.9.tar.gz
nginx-release-0.1.9.zip
nginx-0.1.9-RELEASE importrelease-0.1.9
*) Bugfix: the proxied request was sent without arguments if the request contains "//", "/./", "/../" or "%XX". *) Bugfix: the large compressed responses may be transferred not completely. *) Bugfix: the files bigger than 2G was not transferred on Linux that does not support sendfile64(). *) Bugfix: while the build configuration on Linux the --with-poll_module parameter was required; the bug had appeared in 0.1.8.
Diffstat (limited to 'auto/lib/md5')
-rw-r--r--auto/lib/md5/conf12
-rw-r--r--auto/lib/md5/make2
2 files changed, 7 insertions, 7 deletions
diff --git a/auto/lib/md5/conf b/auto/lib/md5/conf
index 27fd64127..812242352 100644
--- a/auto/lib/md5/conf
+++ b/auto/lib/md5/conf
@@ -7,7 +7,7 @@ if [ $MD5 != NONE ]; then
if grep MD5_Init $MD5/md5.h >/dev/null; then
# OpenSSL md5
OPENSSL_MD5=YES
- have=HAVE_OPENSSL_MD5 . auto/have
+ have=NGX_HAVE_OPENSSL_MD5 . auto/have
else
# rsaref md5
OPENSSL_MD5=NO
@@ -43,13 +43,13 @@ if [ $MD5 != NONE ]; then
else
- if [ $PLATFORM != win32 ]; then
+ if [ $NGX_PLATFORM != win32 ]; then
MD5=NO
# Solaris 8/9
ngx_feature="rsaref md5 library"
- ngx_feature_name="rsaref_md5"
+ ngx_feature_name=
ngx_feature_run=no
ngx_feature_incs="#include <md5.h>"
ngx_feature_libs="-lmd5"
@@ -66,7 +66,7 @@ else
# FreeBSD
ngx_feature="rsaref md library"
- ngx_feature_name="rsaref_md5"
+ ngx_feature_name=
ngx_feature_run=no
ngx_feature_incs="#include <md5.h>"
ngx_feature_libs="-lmd"
@@ -87,7 +87,7 @@ else
# OpenSSL crypto library
ngx_feature="OpenSSL md5 crypto library"
- ngx_feature_name="OpenSSL_md5"
+ ngx_feature_name="NGX_OPENSSL_MD5"
ngx_feature_run=no
ngx_feature_incs="#include <openssl/md5.h>"
ngx_feature_libs="-lcrypto"
@@ -98,7 +98,7 @@ else
if [ $ngx_found = yes ]; then
- have=HAVE_OPENSSL_MD5_H . auto/have
+ have=NGX_HAVE_OPENSSL_MD5_H . auto/have
CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
MD5=YES
MD5_LIB=crypto
diff --git a/auto/lib/md5/make b/auto/lib/md5/make
index 5dfddfa23..b333d4dfe 100644
--- a/auto/lib/md5/make
+++ b/auto/lib/md5/make
@@ -25,7 +25,7 @@ esac
done=NO
-case $PLATFORM in
+case $NGX_PLATFORM in
win32)
cp auto/lib/md5/$ngx_makefile $MD5