Add notes about zlib-ng

This commit is contained in:
Jay Berkenbilt 2023-12-19 08:04:35 -05:00
parent d108b859c1
commit a80e1a578f
1 changed files with 21 additions and 0 deletions

21
TODO.md
View File

@ -18,6 +18,27 @@ Contents
- [HISTORICAL NOTES](#historical-notes)
zlib-ng
=======
* Write ZLIB COMPATIBILITY section of README-maintainer.md.
* Note: deterministic IDs are affected by choice of zlib
```
cd /tmp
git clone https://github.com/zlib-ng/zlib-ng
cd zlib-ng
cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/tmp/inst -DZLIB_COMPAT=ON
cmake --build build -j $(nproc)
(cd build; ctest --verbose)
cmake --install build
```
Then run qpdf's test suite with
```
LD_PRELOAD=/tmp/inst/lib/libz.so.1 ctest --verbose
```
Always
======