comparison auto/lib/zlib/makefile.bcc @ 4849:026ff0eb3062 stable-1.2

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.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 24 Sep 2012 18:37:14 +0000
parents d620f497c50f
children
comparison
equal deleted inserted replaced
4848:a0f1d53546d4 4849:026ff0eb3062
6 CFLAGS = -q -O2 -tWM -w-8004 -w-8012 $(CPU_OPT) 6 CFLAGS = -q -O2 -tWM -w-8004 -w-8012 $(CPU_OPT)
7 7
8 zlib.lib: 8 zlib.lib:
9 cd $(ZLIB) 9 cd $(ZLIB)
10 10
11 bcc32 -c $(CFLAGS) adler32.c crc32.c deflate.c trees.c zutil.c \ 11 bcc32 -c $(CFLAGS) adler32.c crc32.c deflate.c \
12 compress.c 12 trees.c zutil.c compress.c \
13 inflate.c inffast.c inftrees.c
13 14
14 tlib zlib.lib +adler32.obj +crc32.obj +deflate.obj \ 15 tlib zlib.lib +adler32.obj +crc32.obj +deflate.obj \
15 +trees.obj +zutil.obj +compress.obj 16 +trees.obj +zutil.obj +compress.obj \
17 +inflate.obj +inffast.obj +inftrees.obj