diff options
author | martin <martin> | 2006-11-15 15:28:21 +0000 |
---|---|---|
committer | martin <martin> | 2006-11-15 15:28:21 +0000 |
commit | 3a20c908c9b0af8cc57011d198a298a281a347ac (patch) | |
tree | 5d655159faa04df98e71225d58a5441c4bd448fa /www | |
parent | 759ff720b364d626e6a308a1579e9b94a1b313f6 (diff) | |
download | pkgsrc-3a20c908c9b0af8cc57011d198a298a281a347ac.tar.gz |
Explicitly set --enable-debug if we have the "debug" option.
Otherwise at least the firefox2 configure script will default to non-debug
mode.
Diffstat (limited to 'www')
-rw-r--r-- | www/seamonkey/options.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/seamonkey/options.mk b/www/seamonkey/options.mk index 582bc7fd92f..c41c85b380a 100644 --- a/www/seamonkey/options.mk +++ b/www/seamonkey/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.3 2006/10/03 12:09:14 ghen Exp $ +# $NetBSD: options.mk,v 1.4 2006/11/15 15:28:21 martin Exp $ PKG_OPTIONS_VAR = PKG_OPTIONS.gecko PKG_SUPPORTED_OPTIONS = debug @@ -13,6 +13,8 @@ PKG_SUPPORTED_OPTIONS += official-mozilla-branding # so it is correct .if empty(PKG_OPTIONS:Mdebug) CONFIGURE_ARGS+= --disable-debug +.else +CONFIGURE_ARGS+= --enable-debug .endif # Enable Official mozilla.org Branding for Firefox or Thunderbird. |