diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-02 01:06:51 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-02 01:06:51 +0000 |
commit | 4c5e49040d732961580b41d5e943e2dec3c295d2 (patch) | |
tree | f3adfa2c4f335eb4856d07161d67ced23e1e0c21 /www | |
parent | Add 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')
-rw-r--r-- | www/mozilla-devel/Makefile | 12 | ||||
-rw-r--r-- | www/seamonkey/Makefile | 12 | ||||
-rw-r--r-- | www/seamonkey2/Makefile | 12 |
3 files changed, 27 insertions, 9 deletions
diff --git a/www/mozilla-devel/Makefile b/www/mozilla-devel/Makefile index 0e90aad46198..3c5cd950b554 100644 --- a/www/mozilla-devel/Makefile +++ b/www/mozilla-devel/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." 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." diff --git a/www/seamonkey2/Makefile b/www/seamonkey2/Makefile index 0e90aad46198..3c5cd950b554 100644 --- a/www/seamonkey2/Makefile +++ b/www/seamonkey2/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." |