aboutsummaryrefslogtreecommitdiff
path: root/www/firefox-devel/files/mozconfig.in
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-06-02 18:30:59 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-06-02 18:30:59 +0000
commited564c5560425a51c9637a8e57b60f76fc32f06c (patch)
tree8826ec8ebd237729679ab296e732886c610e183d /www/firefox-devel/files/mozconfig.in
parent6d680277e98d6fc123889cce8adbaa445a0fd31a (diff)
Notes
Diffstat (limited to 'www/firefox-devel/files/mozconfig.in')
-rw-r--r--www/firefox-devel/files/mozconfig.in11
1 files changed, 7 insertions, 4 deletions
diff --git a/www/firefox-devel/files/mozconfig.in b/www/firefox-devel/files/mozconfig.in
index 50703b5df336..ed139738e9d5 100644
--- a/www/firefox-devel/files/mozconfig.in
+++ b/www/firefox-devel/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"
######################################################################