comparison auto/lib/openssl/conf @ 492:98143f74eb3d NGINX_0_7_58

nginx 0.7.58 *) Feature: a "listen" directive of the mail proxy module supports IPv6. *) Feature: the "image_filter_jpeg_quality" directive. *) Feature: the "client_body_in_single_buffer" directive. *) Feature: the $request_body variable. *) Bugfix: in ngx_http_autoindex_module in file name links having a ":" symbol in the name. *) Bugfix: "make upgrade" procedure did not work; the bug had appeared in 0.7.53. Thanks to Denis F. Latypoff.
author Igor Sysoev <http://sysoev.ru>
date Mon, 18 May 2009 00:00:00 +0400
parents 829f9a66a659
children 499474178a11
comparison
equal deleted inserted replaced
491:bb2281a3edb6 492:98143f74eb3d
1 1
2 # Copyright (C) Igor Sysoev 2 # Copyright (C) Igor Sysoev
3 3
4 4
5 if [ $OPENSSL != NONE ]; then 5 if [ $OPENSSL != NONE ]; then
6 CORE_INCS="$CORE_INCS $OPENSSL/include"
7 6
8 case "$CC" in 7 case "$CC" in
9 8
10 cl|bcc32) 9 cl | bcc32)
11 have=NGX_OPENSSL . auto/have 10 have=NGX_OPENSSL . auto/have
12 have=NGX_SSL . auto/have 11 have=NGX_SSL . auto/have
13 12
14 LINK_DEPS="$LINK_DEPS $OPENSSL/out32/ssleay32.lib" 13 CFLAGS="$CFLAGS -DNO_SYS_TYPES_H"
15 CORE_LIBS="$CORE_LIBS $OPENSSL/out32/ssleay32.lib"
16 14
17 LINK_DEPS="$LINK_DEPS $OPENSSL/out32/libeay32.lib" 15 CORE_INCS="$CORE_INCS $OPENSSL/openssl/include"
18 CORE_LIBS="$CORE_LIBS $OPENSSL/out32/libeay32.lib" 16 CORE_DEPS="$CORE_DEPS $OPENSSL/openssl/include/openssl/ssl.h"
17 CORE_LIBS="$CORE_LIBS $OPENSSL/openssl/lib/ssleay32.lib"
18 CORE_LIBS="$CORE_LIBS $OPENSSL/openssl/lib/libeay32.lib"
19 19
20 # libeay32.lib requires gdi32.lib 20 # libeay32.lib requires gdi32.lib
21 CORE_LIBS="$CORE_LIBS gdi32.lib" 21 CORE_LIBS="$CORE_LIBS gdi32.lib"
22 ;; 22 ;;
23 23
24 *) 24 *)
25 have=NGX_OPENSSL . auto/have 25 have=NGX_OPENSSL . auto/have
26 have=NGX_SSL . auto/have 26 have=NGX_SSL . auto/have
27
28 CORE_INCS="$CORE_INCS $OPENSSL/include"
27 LINK_DEPS="$LINK_DEPS $OPENSSL/libssl.a $OPENSSL/libcrypto.a" 29 LINK_DEPS="$LINK_DEPS $OPENSSL/libssl.a $OPENSSL/libcrypto.a"
28 CORE_LIBS="$CORE_LIBS $OPENSSL/libssl.a $OPENSSL/libcrypto.a" 30 CORE_LIBS="$CORE_LIBS $OPENSSL/libssl.a $OPENSSL/libcrypto.a"
29 ;; 31 ;;
30 esac 32 esac
31 33