source: xsoft/graphweb/mozilla/mozilla-exp.xml@ 2f66c98

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 v1_0 v5_0 v5_0-pre1 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 2f66c98 was 2aaa7e5, checked in by Mark Hymers <markh@…>, 22 years ago

commit mozilla instructions from Tushar

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

  • Property mode set to 100644
File size: 2.4 KB
Line 
1<sect2>
2<title>Command explanations</title>
3
4<para><userinput>export MOZILLA_OFFICIAL="1" &amp;&amp;
5export BUILD_OFFICIAL="1" &amp;&amp;
6export MOZ_INTERNAL_LIBART_LGPL="1"</userinput>
7Set some variables that affect what and how it is built. The first two exports
8specify that we are building a distribution. The last export specifies that we
9are ok with the LGPL versioned libart.</para>
10
11<para><screen><userinput>--with-system-zlib --with-system-jpeg \
12--with-system-png --with-system-mng"</userinput></screen>
13Use the system versions for these packages.</para>
14
15<para><userinput>--enable-xft</userinput>: Enable the Xft
16support.</para>
17
18<para><userinput>--enable-crypto</userinput>: Enable the Personal
19Security Manager to enable SSL connections.</para>
20
21<para><screen><userinput>--disable-jsd --disable-accessibility \
22--disable-tests --disable-debug \
23--enable-optimize=-O3 --disable-dtd-debug \
24--disable-logging --enable-reorder \
25--enable-strip --enable-elf-dynstr-gc \
26--enable-cpp-rtt</userinput></screen>
27Disable all debugging options and enable all optimization options. You can
28pick and choose from these options. More information on them can be found
29in the mozilla configure script help.</para>
30
31<para><userinput>--enable-extensions=all</userinput>: Enables all of the
32extensions. If you want, you can disable all extensions other than the
33browser by changing this switch to
34<userinput>--enable-extensions="default,-venkman,-inspector,-irc"</userinput>.</para>
35
36<para><userinput>--enable-svg</userinput>: Enable SVG (Scalable Vector
37Graphics) support.</para>
38
39<para><screen><userinput>install -d &mozilla-prefix;/include/mozilla-&mozilla-version;/security
40cp -Lf dist/private/security/*.h dist/public/security/*.h \
41 &mozilla-prefix;/include/mozilla-&mozilla-version;/security</userinput></screen>
42Copy the nss headers that are not copied by make install.</para>
43
44<para><userinput>ln -sf mozilla /usr/X11R6/bin/netscape</userinput>: Since
45many applications expect the browser to be named netscape, make a symbolic
46link for convenience.</para>
47
48<para><screen><userinput>export LD_LIBRARY_PATH="&mozilla-prefix;/lib/mozilla-&mozilla-version;" &amp;&amp;
49export MOZILLA_FIVE_HOME="&mozilla-prefix;/lib/mozilla-&mozilla-version;" &amp;&amp;
50./regxpcom &amp;&amp;
51./regchrome &amp;&amp;
52touch `find &mozilla-prefix;/lib/mozilla-${VERSION} -name *.rdf`</userinput></screen>
53Create the required component registries to enable multi-user installs.</para>
54
55</sect2>
Note: See TracBrowser for help on using the repository browser.