comparison auto/lib/openssl/conf @ 4:4b2dafa26fe2 NGINX_0_1_2

nginx 0.1.2 *) Feature: the --user=USER, --group=GROUP, and --with-ld-opt=OPTIONS options in configure. *) Feature: the server_name directive supports *.domain.tld. *) Bugfix: the portability improvements. *) Bugfix: if configuration file was set in command line, the reconfiguration was impossible; bug appeared in 0.1.1. *) Bugfix: proxy module may get caught in an endless loop when sendfile is not used. *) Bugfix: with sendfile the response was not recoded according to the charset module directives; bug appeared in 0.1.1. *) Bugfix: very seldom bug in the kqueue processing. *) Bugfix: the gzip module compressed the proxied responses that was already compressed.
author Igor Sysoev <http://sysoev.ru>
date Thu, 21 Oct 2004 00:00:00 +0400
parents f0b350454894
children 6f8b0dc0f8dd
comparison
equal deleted inserted replaced
3:8beaf7b3241f 4:4b2dafa26fe2
17 esac 17 esac
18 18
19 else 19 else
20 20
21 if [ $PLATFORM != win32 ]; then 21 if [ $PLATFORM != win32 ]; then
22 OPENSSL=NO 22 OPENSSL=NO
23 ngx_lib_cflags=
24 23
25 ngx_lib_inc="#include <openssl/ssl.h>" 24 ngx_feature="OpenSSL library"
26 ngx_lib="OpenSSL library" 25 ngx_feature_name="OpenSSL"
27 ngx_lib_test="SSL_library_init()" 26 ngx_feature_run=no
28 ngx_libs="-lssl -lcrypto" 27 ngx_feature_incs="#include <openssl/ssl.h>"
29 . auto/lib/test 28 ngx_feature_libs="-lssl -lcrypto"
30 29 ngx_feature_test="SSL_library_init()"
30 . auto/feature
31 31
32 if [ $ngx_found = yes ]; then 32 if [ $ngx_found = yes ]; then
33 have=NGX_OPENSSL . auto/have 33 have=NGX_OPENSSL . auto/have
34 CORE_DEPS="$CORE_DEPS $OPENSSL_DEPS" 34 CORE_DEPS="$CORE_DEPS $OPENSSL_DEPS"
35 CORE_SRCS="$CORE_SRCS $OPENSSL_SRCS" 35 CORE_SRCS="$CORE_SRCS $OPENSSL_SRCS"
36 CORE_LIBS="$CORE_LIBS $ngx_libs" 36 CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
37 OPENSSL=YES 37 OPENSSL=YES
38 ngx_found=no
39 fi 38 fi
40 39
41 fi 40 fi
42 41
43 fi 42 fi