glfs/xsoft/graphweb/firefox/firefox-inst.xml
Tushar Teredesai 4d3712928b Thunderbird and Firefox updated
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1845 af4574ff-66df-0310-9fd7-8a98e5e911e0
2004-02-23 01:29:29 +00:00

40 lines
1.6 KiB
XML

<sect2>
<title>Installation of <application>Mozilla Firefox</application></title>
<para>The configuration of <application>Mozilla Firefox</application> is
very similar to <xref linkend="mozilla"/> and hence the options
will not be discussed. Refer to the <xref linkend="mozilla"/> for
explanations and additional configuration information.</para>
<para>Compile and install <application>Mozilla Firefox</application> by
running the following commands:</para>
<screen><userinput><command>export MOZILLA_OFFICIAL="1" &amp;&amp;
export BUILD_OFFICIAL="1" &amp;&amp;
export MOZ_PHOENIX="1" &amp;&amp;
./configure --prefix=/opt/firefox-&firefox-version; \
--enable-default-toolkit=gtk2 \
--with-x --with-system-zlib \
--with-system-jpeg --with-system-png --with-system-mng \
--enable-xft --enable-crypto \
--disable-accessibility \
--disable-tests --disable-debug \
--disable-logging --enable-reorder \
--enable-strip --disable-pedantic \
--enable-cpp-rtti --enable-extensions=all \
--disable-calendar --disable-mailnews &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
ln -sf /opt/firefox-&firefox-version;/bin/firefox /usr/bin/MozillaFirefox</command></userinput></screen>
<para>To enable multi-user operation, execute the following:</para>
<screen><userinput><command>cd /opt/firefox-&firefox-version;/lib/mozilla-* &amp;&amp;
export LD_LIBRARY_PATH="$PWD" &amp;&amp;
export MOZILLA_FIVE_HOME="$PWD" &amp;&amp;
./regxpcom &amp;&amp;
./regchrome &amp;&amp;
touch `find $PWD -name *.rdf`</command></userinput></screen>
</sect2>