summaryrefslogtreecommitdiff
path: root/devel
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 /devel
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 'devel')
-rw-r--r--devel/xulrunner/options.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/devel/xulrunner/options.mk b/devel/xulrunner/options.mk
index 98d2161296e..2f083ef6158 100644
--- a/devel/xulrunner/options.mk
+++ b/devel/xulrunner/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.9 2011/04/26 14:16:36 tnn Exp $
+# $NetBSD: options.mk,v 1.10 2011/09/12 09:19:06 tnn Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xulrunner
PKG_SUPPORTED_OPTIONS= debug mozilla-jemalloc gnome pulseaudio
@@ -40,11 +40,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)