From 96668359444cba8cd4795c5dd376e1e10a7e1de6 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Fri, 11 Mar 2016 19:19:57 +0100 Subject: [PATCH] linux/perf: conditionally enable support for gz/xz compression Signed-off-by: "Yann E. MORIN" Cc: Thomas De Schampheleire Signed-off-by: Thomas Petazzoni --- linux/linux-tool-perf.mk | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/linux/linux-tool-perf.mk b/linux/linux-tool-perf.mk index d4b8f0ef60..8143474b0a 100644 --- a/linux/linux-tool-perf.mk +++ b/linux/linux-tool-perf.mk @@ -75,6 +75,19 @@ else PERF_MAKE_FLAGS += NO_LIBELF=1 NO_DWARF=1 endif +ifeq ($(BR2_PACKAGE_ZLIB),y) +PERF_DEPENDENCIES += zlib +else +PERF_MAKE_FLAGS += NO_ZLIB=1 +endif + +# lzma is provided by xz +ifeq ($(BR2_PACKAGE_XZ),y) +PERF_DEPENDENCIES += xz +else +PERF_MAKE_FLAGS += NO_LZMA=1 +endif + # We really do not want to build the perf documentation, because it # has stringent requirement on the documentation generation tools, # like xmlto and asciidoc), which may be lagging behind on some -- 2.30.2