Contents
/usr/lib/xulrunner-1.9.1.2
Xulrunner is a runtime environment for XUL applications, and forms the major part of the Mozilla codebase. In particular, it provides the gecko engine together with pkgconfig files so that applications such as Epiphany and Yelp can use it.
Download (HTTP): http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.5.2/source/firefox-3.5.2-source.tar.bz2
Download (FTP): ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.5.2/source/firefox-3.5.2-source.tar.bz2
When a new version of firefox is released, sometimes a corresponding new version of xulrunner appears at the same time. At other times it appears several days later or not at all. So far in the firefox-3.x series, every new release has created xulrunner libraries with a corresponding new version. Whenever a separate xulrunner tarball has been released, it has been bitwise identical to the corresponding firefox tarball. So, we will use the firefox tarball to save downloading this large package twice.
Download MD5 sum: 136867f95c86f3988b7f825e874b85de
Download size: 45 MB
Estimated disk space required: 318 MB (using recommended dependencies)
Estimated build time: 11 SBU (using recommended dependencies)
Optional patch: http://www.linuxfromscratch.org/patches/blfs/svn/firefox-3.5.2-provide_system_nspr_nss-2.patch (Required if using the included NSPR and NSS libs as system versions for other packages)
ALSA Library-1.0.21 GTK+-2.18.3, libIDL-0.8.13, Pango-1.26.0, Python-2.6.2, and Zip-3.0
Note: libjpeg should have been
installed before GTK+ and should
exist on your system. If for some reason you haven't installed
libjpeg, you should remove the
--with-system-jpeg option from the
.mozconfig file created below.
SQLite-3.6.16 (internal sqlite is incompatable with existing or future installations)
D-Bus GLib Bindings-0.82, Doxygen-1.5.9, cURL-7.19.6 (only for crash-reporter), GNOME Virtual File System-2.24.2 and libgnomeui-2.24.2 (for gnome integration), little cms-1.18a, libpng-1.2.39 (patched for apng support), NSPR-4.8.2 (recommended if you build any other Mozilla.org packages), NSS-3.12.4 (recommended if you build any other Mozilla.org packages), startup-notification-0.9. UnZip-5.52, Valgrind (only for testing the jemalloc code), and Wget-1.11.4
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/xulrunner
The configuration of Xulrunner is
accomplished by creating a .mozconfig
file containing the desired configuration options. A default
.mozconfig is created below. To see
the entire list of available configuration options (and an
abbreviated description of each one), issue ./configure --help. You should
review the entire file and comment or uncomment options as
necessary. If you would prefer to download the file instead of
creating it by typing or cut-and-pasting, you can find it at
http://anduin.linuxfromscratch.org/files/BLFS/svn/xulrunner-1.9.1.2-mozconfig
(the file must be installed in the root of the source tree
mozilla directory, and named
.mozconfig).
cat > .mozconfig << "EOF"
# This file contains the options used in the Xulrunner build. You may
# need to specify additional options for your specific build needs.
# Use the information provided by running './configure --help' to
# help you determine if you need to add any additional options.
# Some additional options can be added by uncommenting the examples
# in this file or adding options by inserting a line containing
# 'ac_add_options --some-option-you-need'. Be aware that some accepted
# options, such as '--with-system-bz2', do not affect the build.
# specify that we want to build xulrunner
ac_add_options --enable-application=xulrunner
# Create an object directory and specify to build the package in that
# directory. If desired, modify the location of the object directory
# to a directory inside the source tree by removing '../' from the
# line below.
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../xulrunner-build
# Specify the installation prefix. If you would prefer Xulrunner
# installed in a different prefix, modify the line below to fit
# your needs (the config will always be written to /etc/gre.d)
ac_add_options --prefix=/usr
# apply a minimal level of optimization (-O)
ac_add_options --enable-optimize
# These options are used so that the Xulrunner binaries are linked to
# the system-installed copies of the specified libraries instead of
# the source tree code which may not be the most recent versions.
# With the exception of libsqlite3, the libraries are statically linked.
# (Options to use system installed libraries)
# Using the shipped version of libsqlite3 has been reported to cause
# problems with other applications which were using sqlite3.
# Only comment this line if you know exactly what you are doing!
ac_add_options --enable-system-sqlite
# Comment this only if you want to use whatever patched version of cairo
# is in the shipped mozilla tree, together with the system headers.
ac_add_options --enable-system-cairo
# Comment this if you have not installed lcms.
ac_add_options --enable-system-lcms
# Comment this if you did not build libjpeg before GTK+-2.
ac_add_options --with-system-jpeg
# These two options enable support for building Xulrunner with
# system-installed versions of the Network Security Services (NSS)
# and Netscape Portable Runtime (NSPR) libraries. Comment them if
# you wish to use the included copies (not recommended).
ac_add_options --with-system-nspr
ac_add_options --with-system-nss
# Comment this if you have not built png with the apng patch.
ac_add_options --with-system-png
# The pthreads option is only used when building nspr
# Uncomment this if you build the included nspr.
#ac_add_options --with-pthreads
# zlib is included in LFS. Do not comment this line.
ac_add_options --with-system-zlib
# (Options to disable parts of the package)
# This option is used to disable the a11y support in the Xulrunner
# binaries. Comment out this option if you require a11y support.
ac_add_options --disable-accessibility
# Uncomment this if you did not build curl.
#ac_add_options --disable-crashreporter
# Comment this if you have built dbus-glib.
ac_add_options --disable-dbus
# Comment this if you have gnome-vfs and libgnomeui, and wish to
# integrate xulrunner into your gnome desktop
ac_add_options --disable-gnomevfs
# This option is added so that the Mozilla Installer program is not
# built or installed. The program is not required for a BLFS
# installation of Xulrunner.
ac_add_options --disable-installer
# If you enable javaxpcom, you must have a java compiler installed.
ac_add_options --disable-javaxpcom
# mochitest often causes problems
ac_add_options --disable-mochitest
# This option is added so that test libraries and programs are not
# built. These would only be required for debugging purposes.
ac_add_options --disable-tests
# Disable the updater, which is not appropriate if you build from source
ac_add_options --disable-updater
# (options to add extra parts of the package)
# This option is used to enable source tree included LDAP support in
# the Xulrunner binaries.
###################################################################
#
# NOTE: You must uncomment this option if there is any chance of
# compiling the OpenOffice package from source code using this copy
# of Xulrunner for your Mozilla support.
#
# This has NOT been tested, the current status of OpenOffice
# and xulrunner is unknown! (Remove this comment before release)
#
###################################################################
#ac_add_options --enable-ldap
# Use the anti-phishing measures (a blacklist of sites).
ac_add_options --enable-safe-browsing
# This option is used so that the debugging symbols are removed from
# the installed binaries during the installation process. Comment out
# this option if you may have a need to retain the debugging symbols
# in the installed binaries (the resulting binaries will be about 7MB
# bigger).
ac_add_options --enable-strip
# Uncomment this option if you desire support for dual-monitor
# display using the X-Window Xinerama libraries.
#ac_add_options --enable-xinerama
# This option identifies the default binary directory of the Xulrunner
# installation and is used to locate Xulrunner's installed files. This
# option is is only used for development purposes.
#ac_add_options --with-default-mozilla-five-home=/usr/lib/xulrunner-1.9.1.2
EOF
If you did not install NSPR-4.8.2 and NSS-3.12.4, then apply the patch with the following command:
patch -Np1 -i ../firefox-3.5.2-provide_system_nss_nspr-1.patch
Compile Xulrunner by issuing the following commands:
sed 's@stable@unstable@' \
-i xulrunner/installer/mozilla-js.pc.in &&
echo "Requires: nspr" >>xulrunner/installer/libxul-embedding.pc.in &&
make -f client.mk build
This package does not come with a test suite.
Now, as the root user, install the
package:
make -f client.mk install &&
mkdir /usr/lib/mozilla &&
ln -sv /usr/lib/xulrunner-1.9.1.2/plugins \
/usr/lib/mozilla/plugins &&
chown -R root:root /usr/lib/xulrunner-* /usr/bin/xulrunner
If you've elected to use the included NSPR and NSS, while still the
root user, complete the
installation with the following commands:
for DL in \
libnss3.so libnssutil3.so libsmime3.so libssl3.so libsoftokn3.so \
libplds4.so libplc4.so libnspr4.so
do
ln -sv xulrunner-1.9.1.2/$DL /usr/lib/$DL
done
echo "Requires: nspr" >>xulrunner/installer/libxul-embedding.pc.in : If you try to build Yelp without this, the prtypes header from nspr will not be found. It is arguable whose error this is (the code presumably works on earlier geckos), but this fix is unlikely to cause any damage in other packages.
make -f client.mk
...: Mozilla products are packaged to allow the use
of a configuration file which can be used to pass the configuration
settings to the configure command. make uses the client.mk file to get initial configuration and
setup parameters, then depending on the target parameter
(build or install), either runs the
configure script and
compiles the package or installs the package.
for DL in ...: The
nspr and nss libraries shipped with this package are installed into
/usr/lib/xulrunner-1.9.1.2 which means they will not be found at
runtime. By using symbolic links from /usr/lib they will be found and we can easily
change the links to point to a newer version when we upgrade.
ln -sv /usr/lib/xulrunner-1.9.1.2/plugins /usr/lib/mozilla/plugins: Some packages will install browser plugins into /usr/lib/mozilla/plugins. By creating this as a symlink to the basic plugins we keep them all together.
When you upgrade xulrunner, remember to update the symlinks and to copy any additional plugins compiled agaisnt this series of xulrunner to the new plugin directory.
/usr/lib/xulrunner-1.9.1.2
Last updated on 2009-11-02 00:40:51 +0000