annotate auto/lib/sha1/makefile.bcc @ 618:b9763778e212 NGINX_0_9_7

nginx 0.9.7 *) Feature: now keepalive connections may be closed premature, if there are no free worker connections. Thanks to Maxim Dounin. *) Feature: the "rotate" parameter of the "image_filter" directive. Thanks to Adam Bocim. *) Bugfix: a case when a backend in "fastcgi_pass", "scgi_pass", or "uwsgi_pass" directives is given by expression and refers to a defined upstream.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Apr 2011 00:00:00 +0400
parents 98143f74eb3d
children ad25218fd14b
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
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
3
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 CFLAGS = -q -O2 -tWM $(CPU_OPT) -DL_ENDIAN
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
6
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
7 !if "$(SHA1_ASM)" == "YES"
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
8
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
9 sha1.lib:
492
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 202
diff changeset
10 cd $(SHA1)
202
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
11 bcc32 -c $(CFLAGS) -DSHA1_ASM sha1dgst.c
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
12 tlib sha1.lib +sha1dgst.obj +"asm\s-win32.obj"
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
13
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
14 !else
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
15
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
16 sha1.lib:
492
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 202
diff changeset
17 cd $(SHA1)
202
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
18 bcc32 -c $(CFLAGS) sha1dgst.c
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
19 tlib sha1.lib +sha1dgst.obj
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
20
ca5f86d94316 nginx 0.3.48
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
21 !endif