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