comparison auto/lib/openssl/conf @ 18:6f8b0dc0f8dd NGINX_0_1_9

nginx 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; bug appeared in 0.1.8.
author Igor Sysoev <http://sysoev.ru>
date Thu, 25 Nov 2004 00:00:00 +0300
parents 4b2dafa26fe2
children 7ca9bdc82b3f
comparison
equal deleted inserted replaced
17:9acb68bb0698 18:6f8b0dc0f8dd
16 16
17 esac 17 esac
18 18
19 else 19 else
20 20
21 if [ $PLATFORM != win32 ]; then 21 if [ $NGX_PLATFORM != win32 ]; then
22 OPENSSL=NO 22 OPENSSL=NO
23 23
24 ngx_feature="OpenSSL library" 24 ngx_feature="OpenSSL library"
25 ngx_feature_name="OpenSSL" 25 ngx_feature_name="NGX_OPENSSL"
26 ngx_feature_run=no 26 ngx_feature_run=no
27 ngx_feature_incs="#include <openssl/ssl.h>" 27 ngx_feature_incs="#include <openssl/ssl.h>"
28 ngx_feature_libs="-lssl -lcrypto" 28 ngx_feature_libs="-lssl -lcrypto"
29 ngx_feature_test="SSL_library_init()" 29 ngx_feature_test="SSL_library_init()"
30 . auto/feature 30 . auto/feature
31 31
32 if [ $ngx_found = yes ]; then 32 if [ $ngx_found = yes ]; then
33 have=NGX_OPENSSL . auto/have
34 CORE_DEPS="$CORE_DEPS $OPENSSL_DEPS" 33 CORE_DEPS="$CORE_DEPS $OPENSSL_DEPS"
35 CORE_SRCS="$CORE_SRCS $OPENSSL_SRCS" 34 CORE_SRCS="$CORE_SRCS $OPENSSL_SRCS"
36 CORE_LIBS="$CORE_LIBS $ngx_feature_libs" 35 CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
37 OPENSSL=YES 36 OPENSSL=YES
38 fi 37 fi