annotate auto/lib/sha1/makefile.msvc @ 646:09a689c5e494 NGINX_1_0_13

nginx 1.0.13 *) Feature: the "return" and "error_page" directives can now be used to return 307 redirections. *) Bugfix: a segmentation fault might occur in a worker process if the "resolver" directive was used and there was no "error_log" directive specified at global level. Thanks to Roman Arutyunyan. *) Bugfix: memory leaks. Thanks to Lanshun Zhou. *) Bugfix: nginx might log incorrect error "upstream prematurely closed connection" instead of correct "upstream sent too big header" one. Thanks to Feibo Li. *) Bugfix: on ZFS filesystem disk cache size might be calculated incorrectly; the bug had appeared in 1.0.1. *) Bugfix: the number of internal redirects to named locations was not limited. *) Bugfix: temporary files might be not removed if the "proxy_store" directive was used with SSI includes. *) Bugfix: in some cases non-cacheable variables (such as the $args variable) returned old empty cached value. *) Bugfix: the "proxy_redirect" directives might be inherited incorrectly. *) Bugfix: nginx could not be built with the ngx_http_perl_module if the --with-openssl option was used. *) Bugfix: nginx could not be built by the icc 12.1 compiler.
author Igor Sysoev <http://sysoev.ru>
date Mon, 05 Mar 2012 00:00:00 +0400
parents ad25218fd14b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
202
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
1
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
2 # Copyright (C) Igor Sysoev
644
ad25218fd14b nginx 1.0.12
Igor Sysoev <http://sysoev.ru>
parents: 492
diff changeset
3 # Copyright (C) Nginx, Inc.
202
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
4
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
5
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
6 CFLAGS = -nologo -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT) -D L_ENDIAN
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
7
224
9909a161eb28 nginx 0.3.59
Igor Sysoev <http://sysoev.ru>
parents: 202
diff changeset
8 !IF "$(SHA1_ASM)" == "YES"
202
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
9
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
10 sha1.lib:
492
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 224
diff changeset
11 cd $(SHA1)
202
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
12 cl -c $(CFLAGS) -D SHA1_ASM sha1dgst.c
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
13 link -lib -out:sha1.lib sha1dgst.obj asm/s-win32.obj
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
14
224
9909a161eb28 nginx 0.3.59
Igor Sysoev <http://sysoev.ru>
parents: 202
diff changeset
15 !ELSE
202
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
16
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
17 sha1.lib:
492
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 224
diff changeset
18 cd $(SHA1)
202
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
19 cl -c $(CFLAGS) sha1dgst.c
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
20 link -lib -out:sha1.lib sha1dgst.obj
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
21
224
9909a161eb28 nginx 0.3.59
Igor Sysoev <http://sysoev.ru>
parents: 202
diff changeset
22 !ENDIF