diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-02 18:30:59 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-02 18:30:59 +0000 |
commit | ed564c5560425a51c9637a8e57b60f76fc32f06c (patch) | |
tree | 8826ec8ebd237729679ab296e732886c610e183d /www/firefox-esr/files/mozconfig.in | |
parent | New port: fuhquake (diff) |
Add mozilla-firebird after a repo move from phoenix.
Mozilla Firebird is the browser reborn from the ashes of the Phoenix.
* Update to 0.6 [1]
* Add optional GTK+-2 support [2]
* Add [untested] Sparc64 support [3]
* Add [untested] Alpha support [4]
* Do not compile with -O2 by default. Instead specify -DWITH_OPTIMIZED_CFLAGS
to get extra optimizations
* Link the Java Plug-in again
Submitted by: Stijn Hoop <stijn@win.tue.nl> [1]
Christopher Nehren <apeiron@comcast.net> [2] (based on)
tmm and kris [3]
Bernd Walter <ticso@cicely.de> [4]
Minor fixes by: obraun
Notes
Notes:
svn path=/head/; revision=82037
Diffstat (limited to 'www/firefox-esr/files/mozconfig.in')
-rw-r--r-- | www/firefox-esr/files/mozconfig.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/www/firefox-esr/files/mozconfig.in b/www/firefox-esr/files/mozconfig.in index 50703b5df336..ed139738e9d5 100644 --- a/www/firefox-esr/files/mozconfig.in +++ b/www/firefox-esr/files/mozconfig.in @@ -20,10 +20,6 @@ export XP_UNIX=1 mk_add_options XP_UNIX=1 export PERL=/usr/local/bin/perl mk_add_options PERL=$PERL -export GTK_CONFIG=@X11BASE@/bin/gtk12-config -mk_add_options GTK_CONFIG=$GTK_CONFIG -export GLIB_CONFIG=@LOCALBASE@/bin/glib12-config -mk_add_options GLIB_CONFIG=$GLIB_CONFIG # Configure options for installation ac_add_options --prefix=@PREFIX@ ###################################################################### @@ -46,6 +42,8 @@ ac_add_options --disable-jsd ac_add_options --disable-ldap ac_add_options --disable-pedantic ac_add_options --disable-xinerama +ac_add_options --enable-extensions=default,-inspector,-irc,-venkman,-content-packs,-help +ac_add_options --enable-plaintext-editor-only ###################################################################### # conditional from port Makefile if test -n "$WITH_DEBUG"; then @@ -63,4 +61,9 @@ if test -z "$WITHOUT_XFT"; then else ac_add_options --disable-xft fi # test -z "$WITHOUT_XFT" +if test -n "$WITH_GTK2"; then + ac_add_options --enable-default-toolkit=gtk2 +else + ac_add_options --enable-default-toolkit=gtk +fi # test -n "$WITH_GTK2" ###################################################################### |