From: Bernd Kuhls Date: Sat, 20 Feb 2016 16:40:04 +0000 (+0100) Subject: package/links: add --with/--without-zlib X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=383b706a8af5e4193b5c55624c3390a4481f5cf2;p=buildroot.git package/links: add --with/--without-zlib Signed-off-by: Bernd Kuhls Acked-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- diff --git a/package/links/links.mk b/package/links/links.mk index 4d2cb2e099..8d7ecba0fa 100644 --- a/package/links/links.mk +++ b/package/links/links.mk @@ -52,7 +52,10 @@ LINKS_DEPENDENCIES += xz endif ifeq ($(BR2_PACKAGE_ZLIB),y) +LINKS_CONF_OPTS += --with-zlib LINKS_DEPENDENCIES += zlib +else +LINKS_CONF_OPTS += --without-zlib endif $(eval $(autotools-package))