diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-06-23 18:39:14 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-06-23 18:43:59 +0200 |
commit | f53d0ca1d23516344dd94162ee6ef1d5740c8bc8 (patch) | |
tree | 5be333c284efc3ba5a20082fd0949ba712965496 /tests | |
parent | 1e15d2426ec60017b72c296271d7e551d9765a11 (diff) |
Fix: add missing zlib to fstream if using the builtin one
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libfstream/Makemodule.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/libfstream/Makemodule.am b/tests/libfstream/Makemodule.am index 65abfc7..0eb7a3e 100644 --- a/tests/libfstream/Makemodule.am +++ b/tests/libfstream/Makemodule.am @@ -40,9 +40,12 @@ test_xfrm_zstd2_CPPFLAGS = $(AM_CPPFLAGS) -DTEST_ZSTD2=1 if WITH_OWN_ZLIB test_xfrm_bzip2_LDADD += libz.la +test_xfrm_bzip22_LDADD += libz.la test_xfrm_xz_LDADD += libz.la +test_xfrm_xz2_LDADD += libz.la test_xfrm_gzip_LDADD += libz.la test_xfrm_zstd_LDADD += libz.la +test_xfrm_zstd2_LDADD += libz.la endif if BUILD_TOOLS |