summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2011-11-12 00:32:31 +0000
committertnn <tnn@pkgsrc.org>2011-11-12 00:32:31 +0000
commite202ac1961a17c0473b86ee673b124694d15640d (patch)
tree5fb368f48382f273cbbb4b6bcc4ef71dd624b3d6 /devel
parent0ae3a00f046da7620ac989256e0f42d673cb3742 (diff)
downloadpkgsrc-e202ac1961a17c0473b86ee673b124694d15640d.tar.gz
Be explicit about debug flags to configure.
Diffstat (limited to 'devel')
-rw-r--r--devel/xulrunner192/options.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/devel/xulrunner192/options.mk b/devel/xulrunner192/options.mk
index 33df16b0ec8..61789d28127 100644
--- a/devel/xulrunner192/options.mk
+++ b/devel/xulrunner192/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.1.1.1 2011/04/19 11:16:07 tnn Exp $
+# $NetBSD: options.mk,v 1.2 2011/11/12 00:32:31 tnn Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xulrunner
PKG_SUPPORTED_OPTIONS= debug mozilla-jemalloc gnome
@@ -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)