diff options
| author | Peter Korsgaard <peter@korsgaard.com> | 2017-10-27 14:18:58 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2017-10-28 09:10:11 +0200 |
| commit | aff7673602d21b599470227edf323e72831dd3eb (patch) | |
| tree | d5558de09c29bab1f653fa23c83d360d10699a41 /package/wget | |
| parent | 86eb94636e0dcfaf332ba808eeee04a61b13af60 (diff) | |
| download | buildroot-aff7673602d21b599470227edf323e72831dd3eb.tar.gz buildroot-aff7673602d21b599470227edf323e72831dd3eb.zip | |
wget: add optional zlib support
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/wget')
| -rw-r--r-- | package/wget/wget.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/wget/wget.mk b/package/wget/wget.mk index a7d904405b..3fee8e1b0c 100644 --- a/package/wget/wget.mk +++ b/package/wget/wget.mk @@ -30,4 +30,11 @@ ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y) WGET_DEPENDENCIES += util-linux endif +ifeq ($(BR2_PACKAGE_ZLIB),y) +WGET_CONF_OPTS += --with-zlib +WGET_DEPENDENCIES += zlib +else +WGET_CONF_OPTS += --without-zlib +endif + $(eval $(autotools-package)) |

