diff options
author | Julian Andres Klode <jak@debian.org> | 2015-12-28 00:07:03 +0100 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-01-07 14:28:27 +0100 |
commit | e3fbd54cee3fffecbf4f7c384e0aad715fc68218 (patch) | |
tree | f6376dd48b8f6917c2bd36dca183f1d6eeb5c07f /apt-pkg/makefile | |
parent | d4cfc24887851fa55f93a1a3c09f662b80f97729 (diff) |
FileFd: (native) LZ4 support
Implement native support for LZ4 compression, using the official
lz4 library.
Diffstat (limited to 'apt-pkg/makefile')
-rw-r--r-- | apt-pkg/makefile | 3 |
1 files changed, 3 insertions, 0 deletions
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) |