comparison auto/lib/zlib/make @ 501: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 e66f886a8305
children be4f34123024
comparison
equal deleted inserted replaced
500:bb2281a3edb6 501:98143f74eb3d
5 case "$NGX_CC_NAME" in 5 case "$NGX_CC_NAME" in
6 6
7 msvc*) 7 msvc*)
8 ngx_makefile=makefile.msvc 8 ngx_makefile=makefile.msvc
9 ngx_opt="CPU_OPT=\"$CPU_OPT\" LIBC=$LIBC" 9 ngx_opt="CPU_OPT=\"$CPU_OPT\" LIBC=$LIBC"
10 ngx_zlib="ZLIB=\"$ZLIB\""
10 11
11 ;; 12 ;;
12 13
13 owc*) 14 owc*)
14 ngx_makefile=makefile.owc 15 ngx_makefile=makefile.owc
15 ngx_opt="CPU_OPT=\"$CPU_OPT\"" 16 ngx_opt="CPU_OPT=\"$CPU_OPT\""
17 ngx_zlib=`echo ZLIB=\"$ZLIB\" | sed -e "s/\//$ngx_regex_dirsep/g"`
16 ;; 18 ;;
17 19
18 bcc) 20 bcc)
19 ngx_makefile=makefile.bcc 21 ngx_makefile=makefile.bcc
20 ngx_opt="-DCPU_OPT=\"$CPU_OPT\"" 22 ngx_opt="-DCPU_OPT=\"$CPU_OPT\""
23 ngx_zlib=`echo \-DZLIB=\"$ZLIB\" | sed -e "s/\//$ngx_regex_dirsep/g"`
21 ;; 24 ;;
22 25
23 esac 26 esac
24 27
25 28
27 30
28 31
29 case "$NGX_PLATFORM" in 32 case "$NGX_PLATFORM" in
30 33
31 win32) 34 win32)
32 cp auto/lib/zlib/$ngx_makefile $ZLIB
33
34 cat << END >> $NGX_MAKEFILE 35 cat << END >> $NGX_MAKEFILE
35 36
36 `echo "$ZLIB/zlib.lib: $NGX_MAKEFILE" | sed -e "s/\//$ngx_regex_dirsep/g"` 37 `echo "$ZLIB/zlib.lib: $NGX_MAKEFILE" | sed -e "s/\//$ngx_regex_dirsep/g"`
37 cd `echo $ZLIB | sed -e "s/\//$ngx_regex_dirsep/g"` 38 \$(MAKE) -f auto/lib/zlib/$ngx_makefile $ngx_opt $ngx_zlib
38 \$(MAKE) -f $ngx_makefile $ngx_opt
39 cd \$(CURDIR)
40 39
41 END 40 END
42 41
43 done=YES 42 done=YES
44 ;; 43 ;;