diff options
author | Ignazio Sgalmuzzo <ignaker@gmail.com> | 2014-02-17 22:21:31 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-02-18 21:33:42 -0800 |
commit | 2a685b05f91f71c3b00ee8890ebaed16839b0cd0 (patch) | |
tree | a9e96668322523efc5ca6bbeadee63fc609ed594 /ext2fs/Makefile | |
parent | 8132295cfd2d26a13a6cd2f61b7f5c56ea5efaa7 (diff) |
libstore: replaced gz decompression code with libz
Note: dropped .zip support
configure.ac: added check for libz
ext2fs/Makefile: linked libz
fatfs/Makefile: linked libz
isofs/Makefile: linked libz
libstore/Makefile: linked libz
libstore/do-gunzip.c: new decompression function using libz calls.
libstore/gunzip.c: removed no longer needed code replaced by do_gunzip()
libstore/gzip.h: deleted, no longer needed
libstore/inflate.c: deleted: no longer needed
libstore/tailor.h: deleted: no longer needed
libstore/unzip.c: deleted: no longer needed
libstore/util.c: removed no longer needed code.
Diffstat (limited to 'ext2fs/Makefile')
-rw-r--r-- | ext2fs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/Makefile b/ext2fs/Makefile index 516766a7..32e40f06 100644 --- a/ext2fs/Makefile +++ b/ext2fs/Makefile @@ -24,7 +24,7 @@ SRCS = balloc.c dir.c ext2fs.c getblk.c hyper.c ialloc.c \ inode.c pager.c pokel.c truncate.c storeinfo.c msg.c xinl.c OBJS = $(SRCS:.c=.o) HURDLIBS = diskfs pager iohelp fshelp store ports ihash shouldbeinlibc -OTHERLIBS = -lpthread -lbz2 +OTHERLIBS = -lpthread -lbz2 -lz include ../Makeconf |