glfs/xsoft/other/thunderbird/thunderbird-inst.xml

46 lines
2.0 KiB
XML
Raw Normal View History

<sect2>
<title>Installation of <application>Mozilla Thunderbird</application></title>
<warning><para>The current source tarball uses CRLF line-ending (DOS Format). This causes
problems during the compilation. Once you extract the tarball, convert the files
to UNIX style line endings using <command>dos2unix</command>. Download
<application>dos2unix</application> from
<ulink url="http://www.megaloman.com/~hany/software/hd2u/"/>.</para></warning>
<para>The configuration of <application>Mozilla Thunderbird</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 Thunderbird</application> by
running the following commands:</para>
<screen><userinput><command>export MOZILLA_OFFICIAL="1" &amp;&amp;
export BUILD_OFFICIAL="1" &amp;&amp;
export MOZ_THUNDERBIRD="1" &amp;&amp;
./configure --prefix=/opt/thunderbird-&thunderbird-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 &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
ln -sf /opt/thunderbird-&thunderbird-version;/bin/thunderbird /usr/bin/MozillaThunderbird</command></userinput></screen>
<para>To enable multi-user operation, execute the following:</para>
<screen><userinput><command>cd /opt/thunderbird-&thunderbird-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>