summaryrefslogtreecommitdiff
path: root/ext2fs/Makefile
diff options
context:
space:
mode:
authorIgnazio Sgalmuzzo <ignaker@gmail.com>2014-01-04 22:59:25 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2014-02-09 21:36:22 +0100
commitb39be886ee3562ff924b631a365b1e46d424f636 (patch)
treefa806696bbabbfafe294abd287273c26e66746cd /ext2fs/Makefile
parenteafc1c8d2223693e96c9619897f92774735fcb49 (diff)
Replaced bz2 decompression code with libbz2
configure.ac: added check for libbz2 libstore/Makefile: linked libbz2 ext2fs/Makefile: linked libbz2 do-bunzip2.c: rewritten do_bunzip2 using libbz2 calls. Removed no longer needed functions.
Diffstat (limited to 'ext2fs/Makefile')
-rw-r--r--ext2fs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/Makefile b/ext2fs/Makefile
index 983dbee3..516766a7 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
+OTHERLIBS = -lpthread -lbz2
include ../Makeconf