Mozilla Firefox 1.0 released.
Beside running the binary packages you may also build it yourself:
- Download Mozilla Firefox sourcecode
(Prerequisites). - Extract your archiv (e.g. firefox-1.0-source.tar.bz2):
tar xjf firefox-1.0-source.tar.bz2
and change your current working directory to the new one: cd mozilla/
- There you should create a file .mozconfig like this one:
. ./browser/config/mozconfig
ac_add_options --prefix=/usr/local/firefox
ac_add_options --disable-debug
ac_add_options --disable-installer
ac_add_options --enable-optimize="-O2 -funroll-loops -ffast-math -fschedule-insns2 -fexpensive-optimizations"
(Mozilla build options) - Compile the sourcecode:
gmake -f client.mk build
(Mozilla make build) - Either run the new program immediately or install it into the selected folder:
make install
- Start it:
cd /usr/local/firefox/bin/
./firefox
- Links: