diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-09-14 14:59:31 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-09-16 09:34:35 +0200 |
commit | c9f5cfd3df2706da940a39d6d816ad084ba80fbd (patch) | |
tree | 3aac86238ce840c3c25ff89892f6109c081f60d8 /lib/fstream/Makemodule.am | |
parent | f757737060d4daebb24a32e90d912661428708a8 (diff) |
Implement istream decompression support
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/fstream/Makemodule.am')
-rw-r--r-- | lib/fstream/Makemodule.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/fstream/Makemodule.am b/lib/fstream/Makemodule.am index 9178647..a2e414e 100644 --- a/lib/fstream/Makemodule.am +++ b/lib/fstream/Makemodule.am @@ -4,6 +4,8 @@ libfstream_a_SOURCES += lib/fstream/ostream.c lib/fstream/printf.c libfstream_a_SOURCES += lib/fstream/istream.c libfstream_a_SOURCES += lib/fstream/compressor.c libfstream_a_SOURCES += lib/fstream/compress/ostream_compressor.c +libfstream_a_SOURCES += lib/fstream/uncompress/istream_compressor.c +libfstream_a_SOURCES += lib/fstream/uncompress/autodetect.c libfstream_a_CFLAGS = $(AM_CFLAGS) $(ZLIB_CFLAGS) $(XZ_CFLAGS) libfstream_a_CPPFLAGS = $(AM_CPPFLAGS) @@ -17,12 +19,13 @@ libfstream_a_SOURCES += lib/fstream/unix/istream.c endif if WITH_XZ -libfstream_a_SOURCES += lib/fstream/compress/xz.c +libfstream_a_SOURCES += lib/fstream/compress/xz.c lib/fstream/uncompress/xz.c libfstream_a_CPPFLAGS += -DWITH_XZ endif if WITH_GZIP libfstream_a_SOURCES += lib/fstream/compress/gzip.c +libfstream_a_SOURCES += lib/fstream/uncompress/gzip.c libfstream_a_CPPFLAGS += -DWITH_GZIP endif |