annotate auto/lib/zlib/makefile.owc @ 540:005a70f9573b NGINX_0_8_16

nginx 0.8.16 *) Feature: the "image_filter_transparency" directive. *) Bugfix: "addition_types" directive was incorrectly named "addtion_types". *) Bugfix: resolver cache poisoning. Thanks to Matthew Dempsky. *) Bugfix: memory leak in resolver. Thanks to Matthew Dempsky. *) Bugfix: invalid request line in $request variable was written in access_log only if error_log was set to "info" or "debug" level. *) Bugfix: in PNG alpha-channel support in the ngx_http_image_filter_module. *) Bugfix: nginx always added "Vary: Accept-Encoding" response header line, if both "gzip_static" and "gzip_vary" were on. *) Bugfix: in UTF-8 encoding support by "try_files" directive in nginx/Windows. *) Bugfix: in "post_action" directive usage; the bug had appeared in 0.8.11. Thanks to Igor Artemiev.
author Igor Sysoev <http://sysoev.ru>
date Tue, 22 Sep 2009 00:00:00 +0400
parents 98143f74eb3d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
f0b350454894 nginx 0.1.0
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
1
f0b350454894 nginx 0.1.0
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
2 # Copyright (C) Igor Sysoev
f0b350454894 nginx 0.1.0
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
3
f0b350454894 nginx 0.1.0
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
4
f0b350454894 nginx 0.1.0
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
5 CFLAGS = -zq -bt=nt -ot -op -oi -oe -s -bm $(CPU_OPT)
f0b350454894 nginx 0.1.0
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
6
f0b350454894 nginx 0.1.0
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
7 zlib.lib:
501
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 42
diff changeset
8 cd $(ZLIB)
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 42
diff changeset
9
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 42
diff changeset
10 wcl386 -c $(CFLAGS) adler32.c crc32.c deflate.c trees.c zutil.c &
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 42
diff changeset
11 compress.c
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 42
diff changeset
12 wlib -n zlib.lib adler32.obj crc32.obj deflate.obj trees.obj &
98143f74eb3d nginx 0.7.58
Igor Sysoev <http://sysoev.ru>
parents: 42
diff changeset
13 zutil.obj compress.obj