2014-12-01 10:03:36 +01:00
|
|
|
The zlib.exe is a SFX archive with set of include files required to build
|
|
|
|
Firebird with zlib support and compiled zlib DLL's for both win32 and x64
|
|
|
|
architectures.
|
|
|
|
|
|
|
|
The source code of zlib library was downloaded from
|
|
|
|
|
2024-01-25 20:20:16 +01:00
|
|
|
https://www.zlib.net/zlib131.zip
|
2014-12-01 10:03:36 +01:00
|
|
|
|
2024-01-25 20:20:16 +01:00
|
|
|
It was built with VS 2022 compilers using commands specified at win32/Makefile.msc:
|
2014-12-01 10:03:36 +01:00
|
|
|
|
|
|
|
win32:
|
2019-03-01 21:15:34 +01:00
|
|
|
nmake -f win32/Makefile.msc
|
2014-12-01 10:03:36 +01:00
|
|
|
|
|
|
|
x64:
|
2019-03-01 21:15:34 +01:00
|
|
|
nmake -f win32/Makefile.msc
|
|
|
|
|
|
|
|
Note, ASM files is not uses in build as it was not updated for a long time, not
|
|
|
|
officially supported and 32-bit build crashes in simplest test, see:
|
|
|
|
|
|
|
|
https://github.com/madler/zlib/issues/41
|
|
|
|
https://github.com/madler/zlib/issues/200
|
|
|
|
https://github.com/madler/zlib/issues/223
|
|
|
|
https://github.com/madler/zlib/issues/249
|