comparison auto/lib/openssl/conf @ 583:4e296b7d25bf release-0.3.13

nginx-0.3.13-RELEASE import *) Feature: the IMAP/POP3 proxy supports STARTTLS and STLS. *) Bugfix: the IMAP/POP3 proxy did not work with the select, poll, and /dev/poll methods. *) Bugfix: in SSI handling. *) Bugfix: now Solaris sendfilev() is not used to transfer the client request body to FastCGI-server via the unix domain socket. *) Bugfix: the "auth_basic" directive did not disable the authorization; the bug had appeared in 0.3.11.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 05 Dec 2005 13:18:09 +0000
parents 4d9ea73a627a
children 7af8276b1c2f
comparison
equal deleted inserted replaced
582:6646640ac20b 583:4e296b7d25bf
21 esac 21 esac
22 22
23 23
24 else 24 else
25 25
26 if [ "$NGX_PLATFORM" != win32 ]; then 26 case "$NGX_PLATFORM" in
27 OPENSSL=NO
28 27
29 ngx_feature="OpenSSL library" 28 win32)
30 ngx_feature_name="NGX_OPENSSL" 29 have=NGX_OPENSSL . auto/have
31 ngx_feature_run=no
32 ngx_feature_incs="#include <openssl/ssl.h>"
33 ngx_feature_libs="-lssl -lcrypto"
34 ngx_feature_test="SSL_library_init()"
35 . auto/feature
36
37 if [ $ngx_found = yes ]; then
38 have=NGX_SSL . auto/have 30 have=NGX_SSL . auto/have
39 CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
40 OPENSSL=YES 31 OPENSSL=YES
41 32
42 case "$NGX_SYSTEM" in 33 CORE_INCS="$CORE_INCS c:/openssl/include"
43 SunOS) 34 CORE_LIBS="$CORE_LIBS c:/openssl/ssleay32.lib"
44 CORE_LIBS="$CORE_LIBS -ldl" 35 CORE_LIBS="$CORE_LIBS c:/openssl/libeay32.lib"
45 ;;
46 esac
47 fi
48 36
49 fi 37 # libeay32.lib requires gdi32.lib
38 CORE_LIBS="$CORE_LIBS gdi32.lib"
39 # OpenSSL 0.8's libeay32.lib requires advapi32.lib
40 CORE_LIBS="$CORE_LIBS advapi32.lib"
41 ;;
42
43 *)
44 OPENSSL=NO
45
46 ngx_feature="OpenSSL library"
47 ngx_feature_name="NGX_OPENSSL"
48 ngx_feature_run=no
49 ngx_feature_incs="#include <openssl/ssl.h>"
50 ngx_feature_libs="-lssl -lcrypto"
51 ngx_feature_test="SSL_library_init()"
52 . auto/feature
53
54 if [ $ngx_found = yes ]; then
55 have=NGX_SSL . auto/have
56 CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
57 OPENSSL=YES
58
59 case "$NGX_SYSTEM" in
60 SunOS)
61 CORE_LIBS="$CORE_LIBS -ldl"
62 ;;
63 esac
64 fi
65 ;;
66
67 esac
50 68
51 fi 69 fi