comparison auto/lib/openssl/make @ 489:549994537f15 NGINX_0_7_52

nginx 0.7.52 *) Feature: the first native Windows binary release. *) Bugfix: in processing HEAD method while caching. *) Bugfix: in processing the "If-Modified-Since", "If-Range", etc. client request header lines while caching. *) Bugfix: now the "Set-Cookie" and "P3P" header lines are hidden in cacheable responses. *) Bugfix: if nginx was built with the ngx_http_perl_module and with a perl which supports threads, then during a master process exit the message "panic: MUTEX_LOCK" might be issued. *) Bugfix: nginx could not be built --without-http-cache; the bug had appeared in 0.7.48. *) Bugfix: nginx could not be built on platforms different from i386, amd64, sparc, and ppc; the bug had appeared in 0.7.42.
author Igor Sysoev <http://sysoev.ru>
date Mon, 20 Apr 2009 00:00:00 +0400
parents 052a7b1d40e5
children e66f886a8305
comparison
equal deleted inserted replaced
488:eb4fdebda673 489:549994537f15
11 case $USE_THREADS in 11 case $USE_THREADS in
12 NO) NGX_OPENSSL_CONFIG="$NGX_OPENSSL_CONFIG no-threads" ;; 12 NO) NGX_OPENSSL_CONFIG="$NGX_OPENSSL_CONFIG no-threads" ;;
13 *) NGX_OPENSSL_CONFIG="$NGX_OPENSSL_CONFIG threads" ;; 13 *) NGX_OPENSSL_CONFIG="$NGX_OPENSSL_CONFIG threads" ;;
14 esac 14 esac
15 15
16 case "$NGX_PLATFORM" in 16 case "$CC" in
17 cl)
18 cat << END >> $NGX_MAKEFILE
19
20 $OPENSSL/out32/ssleay32.lib:
21 cd $OPENSSL
22 perl Configure VC-WIN32 no-shared
23 ms\\do_ms
24 \$(MAKE) -f ms\\nt.mak
25 cd ..\\..\\..
26
27 END
28
29 ;;
30
31 bcc32)
32 cat << END >> $NGX_MAKEFILE
33
34 `echo "$OPENSSL\\out32\\libeay32.lib: $OPENSSL\\out32\\ssleay32.lib" \
35 | sed -e "s/\//$ngx_regex_dirsep/g"`
36
37 `echo "$OPENSSL\\out32\\ssleay32.lib:" | sed -e "s/\//$ngx_regex_dirsep/g"`
38 cd `echo "$OPENSSL" | sed -e "s/\//$ngx_regex_dirsep/g"`
39 perl Configure BC-32 no-shared
40 ms\\do_nasm
41 \$(MAKE) -f ms\\bcb.mak
42 cd ..\\..\\..
43
44 END
45
46 ;;
47
17 *) 48 *)
18 cat << END >> $NGX_MAKEFILE 49 cat << END >> $NGX_MAKEFILE
19 50
20 $OPENSSL/libssl.a: 51 $OPENSSL/libssl.a:
21 cd $OPENSSL \\ 52 cd $OPENSSL \\