diff options
author | tnn <tnn@pkgsrc.org> | 2011-09-12 09:19:06 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2011-09-12 09:19:06 +0000 |
commit | f0534005248c855564c1154624bce87543116556 (patch) | |
tree | 30d71dbe7de682c3a448cca710cfd1ba274dc071 /mail/thunderbird | |
parent | 009043531429a80ba8cfbc0a96fd7f6b449fa1cd (diff) | |
download | pkgsrc-f0534005248c855564c1154624bce87543116556.tar.gz |
PR pkg/45346: Pierre Allegraud: Be more consistent about which configure
settings we want / do not want with the debug option.
Diffstat (limited to 'mail/thunderbird')
-rw-r--r-- | mail/thunderbird/options.mk | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/thunderbird/options.mk b/mail/thunderbird/options.mk index 204e6f75410..238b47b1790 100644 --- a/mail/thunderbird/options.mk +++ b/mail/thunderbird/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.8 2011/08/23 18:04:17 tnn Exp $ +# $NetBSD: options.mk,v 1.9 2011/09/12 09:19:06 tnn Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.thunderbird PKG_SUPPORTED_OPTIONS= debug mozilla-jemalloc gnome official-mozilla-branding mozilla-lightning mozilla-enigmail @@ -38,10 +38,12 @@ CONFIGURE_ARGS+= --disable-jemalloc .endif .if !empty(PKG_OPTIONS:Mdebug) -CONFIGURE_ARGS+= --enable-debug +CONFIGURE_ARGS+= --enable-debug --enable-debug-symbols +CONFIGURE_ARGS+= --disable-install-strip PLIST.debug= yes .else -CONFIGURE_ARGS+= --disable-debug +CONFIGURE_ARGS+= --disable-debug --disable-debug-symbols +CONFIGURE_ARGS+= --enable-install-strip .endif .if !empty(PKG_OPTIONS:Mmozilla-jit) |