diff options
author | wiz <wiz@pkgsrc.org> | 2017-03-12 20:58:20 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2017-03-12 20:58:20 +0000 |
commit | 3c549331a35cd6f61a9679c296e4ed20658a4c66 (patch) | |
tree | 9e58a0f87cd78d66a81468b38643867c5911f35f /mail | |
parent | 75413e867d07ae582cfcb1e25c87d390cd037198 (diff) | |
download | pkgsrc-3c549331a35cd6f61a9679c296e4ed20658a4c66.tar.gz |
Add option handling for sidebar option, which was non-functional.
From Thomas Merkel in private mail.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/neomutt/options.mk | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/mail/neomutt/options.mk b/mail/neomutt/options.mk index 5bdca8007ba..18676061422 100644 --- a/mail/neomutt/options.mk +++ b/mail/neomutt/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.5 2017/03/07 20:42:28 elric Exp $ +# $NetBSD: options.mk,v 1.6 2017/03/12 20:58:20 wiz Exp $ # Global and legacy options @@ -173,3 +173,12 @@ CONFIGURE_ARGS+= --with-gpgme-prefix=${BUILDLINK_PREFIX.gpgme} .else CONFIGURE_ARGS+= --disable-gpgme .endif + +### +### sidebar support +### +.if !empty(PKG_OPTIONS:Mmutt-sidebar) +CONFIGURE_ARGS+= --enable-sidebar +.else +CONFIGURE_ARGS+= --disable-sidebar +.endif |