summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2011-09-12 09:19:06 +0000
committertnn <tnn@pkgsrc.org>2011-09-12 09:19:06 +0000
commit26be83df417bec5ec2a3f2b410f6eaa44b6b7110 (patch)
tree30d71dbe7de682c3a448cca710cfd1ba274dc071 /mail
parent791b2e720829fdcf8273d9f7247c470ce58ba9de (diff)
downloadpkgsrc-26be83df417bec5ec2a3f2b410f6eaa44b6b7110.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')
-rw-r--r--mail/thunderbird/options.mk8
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)