From e3fbd54cee3fffecbf4f7c384e0aad715fc68218 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Mon, 28 Dec 2015 00:07:03 +0100 Subject: FileFd: (native) LZ4 support Implement native support for LZ4 compression, using the official lz4 library. --- apt-pkg/makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apt-pkg/makefile') diff --git a/apt-pkg/makefile b/apt-pkg/makefile index 45dcddfe3..f4e750d34 100644 --- a/apt-pkg/makefile +++ b/apt-pkg/makefile @@ -25,6 +25,9 @@ endif ifeq ($(HAVE_LZMA),yes) SLIBS+= -llzma endif +ifeq ($(HAVE_LZ4),yes) +SLIBS+= -llz4 +endif APT_DOMAIN:=libapt-pkg$(LIBAPTPKG_MAJOR) SOURCE = $(wildcard *.cc */*.cc) -- cgit v1.2.3