« Launch non-exe extension files as executables | Home | Creating jQuery UI Tabs »
Light build of Mozilla Firefox
By admin | June 30, 2011
Most of the time, a stock Firefox installation from Mozilla’s website or the apt repository usually works just fine on most machines. However, if you prefer a more plain and vanilla Firefox install without all the latest bells and whistles, then one can manually compile a build from source code. This has the advantage of being faster and leaner than the stock Firefox because the unwanted features are simply not present, although you will not have all the latest web bells/whistles with this method (e.g. WebM, WebGL, HTML5 video, etc).
Download a copy of the Firefox source, and extract it. Then run ./configure as follows:
–enable-application=browser –enable-official-branding –disable-debug –with-x –disable-profiling –disable-gnomevfs –disable-gconf –disable-accessibility –disable-ogg –disable-webm –enable-splashscreen –disable-angle –enable-crashreporter –disable-smil –disable-installer –disable-updater –disable-update-packaging –disable-parental-controls –disable-tests –enable-faststart –disable-safe-browsing –disable-meegocontentaction –enable-optimize=-O2 –disable-logging –enable-install-strip –disable-necko-wifi –disable-glibtest
A few points to note:
- Remove –enable-official-branding if you ever plan to distribute your build online (in .deb or something like that) – Mozilla is extremely picky about distributing official artwork in modified builds.
- Add a –prefix=/usr if you don’t want to install to /usr/local (replace /usr with whatever path you want)
- You will want to add –disable-libjpeg-turbo if you don’t have a handy version of yasm (or are lazy)
Then run make. If you want to test your build, you can find it under dist/bin of your extracted tarball. Change to that directory and then one can test it like so:
LD_LIBRARY_PATH=. ./firefox-bin -ProfileManager -no-remote
This will allow you to test without clobbering your existing profile. When you are done, you can run make install (beware of conflicts with the repository’s firefox) or if you would rather use checkinstall to make a package, checkinstall –fstrans=no.
If you found this article helpful or interesting, please help Compdigitec spread the word. Don’t forget to subscribe to Compdigitec Labs for more useful and interesting articles!
Topics: Linux | 1 Comment »
January 20th, 2025 at 03:45
… [Trackback]
[…] Read More on on that Topic: compdigitec.com/labs/2011/06/30/light-build-of-mozilla-firefox/ […]