summaryrefslogtreecommitdiff
path: root/www/seamonkey
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-06-02 01:06:51 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-06-02 01:06:51 +0000
commit4c5e49040d732961580b41d5e943e2dec3c295d2 (patch)
treef3adfa2c4f335eb4856d07161d67ced23e1e0c21 /www/seamonkey
parentAdd Ximian Connector, an Evolution plug-in for connecting to Microsoft (diff)
Enable optional debugging support by specifying WITH_DEBUG or by enabling it
through OPTIONS. Submitted by: Tom McLaughlin <tmclaugh@sdf.lonestar.org>
Notes
Notes: svn path=/head/; revision=110625
Diffstat (limited to 'www/seamonkey')
-rw-r--r--www/seamonkey/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile
index 0e90aad46198..3c5cd950b554 100644
--- a/www/seamonkey/Makefile
+++ b/www/seamonkey/Makefile
@@ -60,8 +60,6 @@ CONFIGURE_ARGS= \
--disable-cpp-exceptions \
--disable-cpp-rtti \
--enable-crypto \
- --disable-debug \
- --disable-debug \
--disable-gtktest \
--disable-freetypetest \
--disable-installer \
@@ -72,7 +70,6 @@ CONFIGURE_ARGS= \
--disable-pedantic \
--disable-bidi \
--disable-plaintext-editor-only \
- --enable-strip \
--enable-svg \
--enable-svg-renderer-libart \
--disable-tests \
@@ -112,6 +109,7 @@ OPTIONS=XFT "Enable Xft font anti-aliasing" on \
CALENDAR "Enable the Calendar module" off \
MAILNEWS "Enable Mail and News modules" on \
COMPOSER "Enable the HTML Composer module" on \
+ DEBUG "Enable debugging (i.e. gdb) support" off \
LDAP "Enable LDAP support for Mailnews" on \
CHATZILLA "Enable the Chatzilla IRC module" on \
XMLTERM "Enable the XMLTerm module" on \
@@ -140,6 +138,14 @@ BROKEN= Mozilla${MOZ_SUFX} and Xft2 render the mozilla-fonts \
CONFIGURE_ARGS+=--disable-xft
.endif
+.if defined(WITH_DEBUG)
+CONFIGURE_ARGS+=--enable-debug \
+ --disable-strip
+.else
+CONFIGURE_ARGS+=--disable-debug \
+ --enable-strip
+.endif
+
.if defined(WITH_CALENDAR) && (defined(WITHOUT_MAILNEWS) || \
defined(WITHOUT_COMPOSER))
BROKEN= "Calendar requires Composer and Mailnews support."