diff options
author | obache <obache@pkgsrc.org> | 2010-06-27 11:18:05 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-06-27 11:18:05 +0000 |
commit | 5c7285ff988382eec4081270111f8aa7cce5064b (patch) | |
tree | 752eef96c8cc6fb6e43b1f01f775baa0d7883c63 /www/lighttpd | |
parent | ec814c874d786e90702bbf2f3ad3204394c0adac (diff) | |
download | pkgsrc-5c7285ff988382eec4081270111f8aa7cce5064b.tar.gz |
Exactly disable bzip2 if bzip option is off.
PR#43538 by Aleksey Cheusov.
Diffstat (limited to 'www/lighttpd')
-rw-r--r-- | www/lighttpd/options.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/lighttpd/options.mk b/www/lighttpd/options.mk index 02955d42b88..e0cb4afe43d 100644 --- a/www/lighttpd/options.mk +++ b/www/lighttpd/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.6 2007/02/22 19:27:20 wiz Exp $ +# $NetBSD: options.mk,v 1.7 2010/06/27 11:18:05 obache Exp $ PKG_OPTIONS_VAR = PKG_OPTIONS.lighttpd PKG_SUPPORTED_OPTIONS= bzip fam gdbm inet6 ldap lua mysql ssl memcache @@ -12,6 +12,8 @@ PKG_SUGGESTED_OPTIONS= inet6 ssl .if !empty(PKG_OPTIONS:Mbzip) . include "../../archivers/bzip2/buildlink3.mk" CONFIGURE_ARGS+= --with-bzip2 +.else +CONFIGURE_ARGS+= --without-bzip2 .endif ### |