diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-16 00:10:12 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-16 00:10:12 +0000 |
commit | 2b519d7ce5cc1a9b78fe25efa769223dfea9bcb7 (patch) | |
tree | d3475b2b30df2c64058a7bb4e013bcd3cc6579a3 /www/flock/files/mozconfig.in | |
parent | 7a1e1287f3231b9f571faf007d296084290f4e0c (diff) |
Update to 0.9. For a complete list of what's new, plus an important
list of Known Issues, see:
http://www.mozilla.org/products/firefox/releases/0.9.html
This update also includes a new pkg-install script based on ports/65590
from Thierry Thomas <thierry@pompo.net>. However...
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
After installing Firefox, you must su - to root, and run ``firefox'' before
running it as any other user. If you do not su - to root, you may lose some
of your user settings. If you try to run Firefox as a normal user without
first running it as root, the browser will not show up. This is a known issue
with Firefox, and they hope to address it in a future release.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Notes
Notes:
svn path=/head/; revision=111559
Diffstat (limited to 'www/flock/files/mozconfig.in')
-rw-r--r-- | www/flock/files/mozconfig.in | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/www/flock/files/mozconfig.in b/www/flock/files/mozconfig.in index a0d469df586e..df281d3a3ca8 100644 --- a/www/flock/files/mozconfig.in +++ b/www/flock/files/mozconfig.in @@ -9,6 +9,7 @@ ac_add_options --disable-tests ac_add_options --disable-debug ac_add_options --disable-mailnews ac_add_options --disable-composer +ac_add_options --enable-default-toolkit=gtk2 ###################################################################### # FBSD specific export CPPFLAGS="@CPPFLAGS@" @@ -31,7 +32,6 @@ ac_add_options --with-system-mng=@LOCALBASE@ ###################################################################### # set compile/link features ac_add_options --with-pthreads -ac_add_options --enable-reorder ###################################################################### # disable unneeded/unavailable ac_add_options --disable-auto-deps @@ -45,6 +45,11 @@ ac_add_options --disable-installer ac_add_options --enable-extensions=cookie,xml-rpc,xmlextras,p3p,pref,transformiix,universalchardet,typeaheadfind,webservices,inspector ###################################################################### # conditional from port Makefile +if test -n "$WITH_REORDER"; then + ac_add_options --enable-reorder +else + ac_add_options --disable-reorder +fi # test -n "$WITH_REORDER" if test -n "$WITH_DEBUG"; then ac_add_options --enable-debug ac_add_options --disable-strip @@ -52,6 +57,10 @@ else ac_add_options --disable-debug ac_add_options --enable-optimize ac_add_options --enable-strip + export BUILD_OFFICIAL=1 + export MOZILLA_OFFICIAL=1 + mk_add_options BUILD_OFFICIAL=1 + mk_add_options MOZILLA_OFFICIAL=1 fi # test -n "$WITH_DEBUG" if test -n "$WITH_LOGGING"; then ac_add_options --enable-logging @@ -63,9 +72,4 @@ 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" ###################################################################### |