Put bzip2 support on equal footing with gzip support.

Enable bzip2 support by default, set LOADER_NO_BZIP2_SUPPORT to disable it.

Pointy hat to:	sobomax
This commit is contained in:
David E. O'Brien 2005-05-31 21:16:50 +00:00
parent c0a87c26b3
commit 264d3e6b45
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146840

View File

@ -25,7 +25,7 @@ CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386
LIBFICL= ${.OBJDIR}/../../ficl/libficl.a
.endif
.if defined(LOADER_BZIP2_SUPPORT)
.if !defined(LOADER_NO_BZIP2_SUPPORT)
CFLAGS+= -DLOADER_BZIP2_SUPPORT
.endif
.if !defined(LOADER_NO_GZIP_SUPPORT)