summaryrefslogtreecommitdiffhomepage
path: root/auto/lib/zlib/makefile.owc
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2012-09-24 18:37:14 +0000
committerMaxim Dounin <mdounin@mdounin.ru>2012-09-24 18:37:14 +0000
commitae5736bfa41514eb7a9631bea4f5ae35aeebc9b4 (patch)
tree5550cd5be2dd81387a611428168d9ff037544abc /auto/lib/zlib/makefile.owc
parentce750db2339d2971202dbc536d4a36b6f5acc86c (diff)
downloadnginx-ae5736bfa41514eb7a9631bea4f5ae35aeebc9b4.tar.gz
nginx-ae5736bfa41514eb7a9631bea4f5ae35aeebc9b4.tar.bz2
Merge of r4779, r4840, r4843, r4844: win32 changes.
*) Fixed build with Visual Studio 2005 Express. It is available via winetricks which makes it still usable, and has an old crtdefs.h which uses _CRT_SECURE_NO_DEPRECATE instead of _CRT_SECURE_NO_WARNINGS to suppress warnings. Reported by HAYASHI Kentaro, http://mailman.nginx.org/pipermail/nginx-devel/2012-August/002542.html *) Configure: provide inflate() when building zlib on win32. *) Helper target "win32" to run configure for win32 builds. *) Updated zlib used for win32 builds.
Diffstat (limited to '')
-rw-r--r--auto/lib/zlib/makefile.owc4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto/lib/zlib/makefile.owc b/auto/lib/zlib/makefile.owc
index f75e66d4f..9e123be83 100644
--- a/auto/lib/zlib/makefile.owc
+++ b/auto/lib/zlib/makefile.owc
@@ -9,6 +9,6 @@ zlib.lib:
cd $(ZLIB)
wcl386 -c $(CFLAGS) adler32.c crc32.c deflate.c trees.c zutil.c &
- compress.c
+ compress.c inflate.c inffast.c inftrees.c
wlib -n zlib.lib adler32.obj crc32.obj deflate.obj trees.obj &
- zutil.obj compress.obj
+ zutil.obj compress.obj inflate.obj inffast.obj inftrees.obj