summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authortnn <tnn>2011-09-12 09:19:06 +0000
committertnn <tnn>2011-09-12 09:19:06 +0000
commit4917630ac13137ac57b7ea23756cb0c6486359db (patch)
tree30d71dbe7de682c3a448cca710cfd1ba274dc071 /devel
parent4e05bbec4bbdc72cf86ab3d2a849d95895cebe79 (diff)
downloadpkgsrc-4917630ac13137ac57b7ea23756cb0c6486359db.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)