source: xsoft/graphweb/mozilla/mozilla-exp.xml@ 0019652

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb v5_1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 0019652 was 0019652, checked in by Larry Lawrence <larry@…>, 20 years ago

final grammar cleanups

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2275 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 3.7 KB
Line 
1<sect2>
2<title>Command explanations</title>
3
4<para><screen><command>export MOZILLA_OFFICIAL="1" &amp;&amp;
5export BUILD_OFFICIAL="1"</command></screen>
6Set some variables that affect what and how the package is built. The first two exports
7specify a distribution is being built.</para>
8
9<!--
10<para> The last export specifies that we
11are ok with the <acronym>LGPL</acronym> versioned libart.</para>
12-->
13
14<para><parameter>--prefix=/usr</parameter>: Previously mozilla did
15not support the make install option. Hence, the package was installed in
16<filename>/opt</filename>. The package now supports "make install" and follows
17the <acronym>FHS</acronym> guidelines for installation. Therefore the book now
18recommends installation in a system wide prefix such as <filename>/usr
19</filename>.</para>
20
21<para><screen><option>--enable-toolkit-gtk2</option></screen>Use gtk2
22toolkit.</para>
23
24<para><screen><option>--with-system-zlib --with-system-jpeg \
25--with-system-png --with-system-mng</option></screen>
26Use the system versions for these packages.</para>
27
28<para><option>--enable-xft</option>: Enable the Xft support. You need
29<application>fontconfig</application> or the latest <application>XFree86
30</application> version to enable xft.</para>
31
32<para><option>--enable-crypto</option>: Enable the Personal
33Security Manager to enable <acronym>SSL</acronym> connections.</para>
34
35<para><screen><option>--disable-jsd --disable-accessibility \
36--disable-tests --disable-debug \
37--disable-dtd-debug \
38--disable-logging --enable-reorder \
39--enable-strip \
40--enable-cpp-rtti</option></screen>
41Various options that affect what components are built and some optimization
42options. You can pick and choose from these options. More information on them
43can be found in the <application>Mozilla</application> <command>configure
44</command> script help. Not all options are used in the instructions given
45above.</para>
46
47<para><option>--enable-extensions=...</option>: Enables extensions. If you
48want, you can disable all extensions other than the browser by changing this
49switch to <parameter>--enable-extensions="default,-venkman,-inspector,-irc"</parameter>.
50For a short description of the various extensions available with the mozilla
51source, see
52<ulink url="http://linuxfromscratch.org/~tushar/downloads/mozilla-extensions.txt"/>.</para>
53
54<para><screen><command>install -d /usr/include/mozilla-&mozilla-version;/nss
55cp -Lf dist/private/nss/*.h dist/public/nss/*.h \
56 /usr/include/mozilla-&mozilla-version;/nss</command></screen>
57Copy the nss headers that are not copied by make install.</para>
58
59<!--
60<para><userinput>install -d /usr/lib/mozilla-&mozilla-version;/openoffice</userinput> :
61Make a directory to store static libraries that openoffice needs during compilation.
62These libraries are not installed by default.</para>
63-->
64
65<para><command>ln -nsf mozilla-&mozilla-version; ...</command>:
66<application>Mozilla</application> installs headers and libraries in version
67specific directories. This command makes symbolic links so that applications that
68depend on <application>Mozilla</application> (such as <application>OpenOffice
69</application>, <application>Galeon</application>, etc.) don't need to know
70which version of <application>Mozilla</application> is installed.</para>
71
72<para><screen><command>export LD_LIBRARY_PATH="/usr/lib/mozilla-&mozilla-version;" &amp;&amp;
73export MOZILLA_FIVE_HOME="/usr/lib/mozilla-&mozilla-version;" &amp;&amp;
74./regxpcom &amp;&amp;
75./regchrome &amp;&amp;
76touch `find /usr/lib/mozilla-${VERSION} -name *.rdf`</command>
77</screen>
78Create the required component registries to enable multi-user installs. These
79steps should be preformed by the root user each time a mozilla add-on is
80installed. This will allow normal users to run mozilla.</para>
81
82</sect2>
Note: See TracBrowser for help on using the repository browser.