diff options
author | marha <marha@users.sourceforge.net> | 2012-06-25 09:09:14 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-06-25 09:09:14 +0200 |
commit | b1565e868d5549753fd710529b88bd4c183889ab (patch) | |
tree | 1ec66b54444e5ad1a6c2836c648b3f1bf4c626d2 /zlib | |
parent | 66841fa144ddd72df67ab1ddf880ca508d4bc9e3 (diff) | |
download | vcxsrv-b1565e868d5549753fd710529b88bd4c183889ab.tar.gz vcxsrv-b1565e868d5549753fd710529b88bd4c183889ab.tar.bz2 vcxsrv-b1565e868d5549753fd710529b88bd4c183889ab.zip |
zlib is now compiled as a dll
Diffstat (limited to 'zlib')
-rw-r--r-- | zlib/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/zlib/Makefile b/zlib/Makefile index 9fecb13ef..69371a621 100644 --- a/zlib/Makefile +++ b/zlib/Makefile @@ -1,4 +1,8 @@ -LIBRARY=libz -CSRCS = adler32.c compress.c crc32.c gzio.c uncompr.c deflate.c trees.c \ - zutil.c inflate.c infback.c inftrees.c inffast.c +SHAREDLIB=zlib1 +DEFFILE = win32\zlib.def +DEFINES += ZLIB_DLL + +CSRCS = adler32.c compress.c crc32.c uncompr.c deflate.c trees.c \ + zutil.c inflate.c infback.c inftrees.c inffast.c gzlib.c \ + gzclose.c gzread.c gzwrite.c |