# HG changeset patch # User Dominique Corbex # Date 1363466215 -3600 # Node ID cd72738a73b8d254df85a4aea8950881a5ad93e1 # Parent 1921d455d1f65179c50be13ed59cc081aa8be6b3 Up: thunderbird (17.0.4esr) diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/receipt --- a/thunderbird/receipt Sat Mar 16 21:33:14 2013 +0100 +++ b/thunderbird/receipt Sat Mar 16 21:36:55 2013 +0100 @@ -1,60 +1,130 @@ # SliTaz package receipt. PACKAGE="thunderbird" -VERSION="11.0.1" +VERSION="17.0.4esr" CATEGORY="network" SHORT_DESC="Mozilla's Thunderbird email application." MAINTAINER="domcox@slitaz.org" TARBALL="$PACKAGE-$VERSION.source.tar.bz2" WEB_SITE="http://www.mozilla.org/" WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/source/$TARBALL" + +DEPENDS="alsa-lib gtk+ zip unzip libevent libvpx nspr nss sqlite \ +dbus dbus-glib glib libnotify libfirefox" +BUILD_DEPENDS="alsa-lib-dev gtk+-dev bzip2 zip unzip coreutils \ +libevent-dev libvpx-dev nspr-dev nss-dev yasm sqlite-dev \ +dbus-dev dbus-glib-dev libnotify-dev freetype fontconfig tar gzip mesa-dev" TAGS="email pop imap smtp" -TB_LOCALES="de es_ES fr en_GB pt_PT pt_BR ru" - -DEPENDS="alsa-lib gtk+ dbus dbus-glib glib jpeg libevent libnotify nss \ - sqlite xorg-libX11 xorg-libXdamage xorg-libXt" -BUILD_DEPENDS="alsa-lib-dev bzip2 dbus-dev dbus-glib-dev freetype fontconfig \ - gtk+-dev libIDL libevent-dev libnotify-dev make mesa-dev nspr-dev \ - nss-dev perl pkg-config python sqlite-dev tar wireless_tools-dev \ - xorg-dev xorg-libXt-dev zip" # Rules to configure and make the package. +# WARNING: 1GB RAM minimum. Additional RAM will significantly decrease +# build time. +# At least 2.5 GB free disk space + + compile_rules() { - cat <> $src/.mozconfig - echo "mk_add_options MOZ_CO_LOCALES=\"$TB_LOCALES\"" >> $src/.mozconfig - # for a quick build - echo -e "\n# build quicker" >> $src/.mozconfig - echo "mk_add_options MOZ_MAKE_FLAGS=$MAKEFLAGS" >> $src/.mozconfig - # build cd $src - patch -Np1 -i $stuff/thunderbird-3.0-lang.patch - patch -Np1 -i $stuff/thunderbird-install-dir.patch - ./configure $CONFIGURE_ARGS && - make 2>&1 | head -n 1000 && - make DESTDIR=$DESTDIR install + # load mozconfig + cp -a $stuff/mozconfig $src + + # fix path of 'check_debug_ranges.py' + ln -s $src/mozilla/build/autoconf/check_debug_ranges.py \ + $src/build/autoconf/check_debug_ranges.py + + # build and create a thunderbird tarball + # reducing log size: hide c++, nsinstall, python msgs + # Exception... Component returned failure code: known bug #696763 + make -f client.mk | egrep -v "c++|nsinstall|python" && + make -C obj-thunderbird/mail/installer + + # install + # locate tarball + local tarball tarpath fn1 fn2 + tarpath=$src/obj-thunderbird/mozilla/dist + fn1="$tarpath/thunderbird-${VERSION%esr}.en-US.linux-$ARCH.tar.bz2" + fn2="$tarpath/thunderbird-${VERSION%esr}.en-US.linux-$(uname -m).tar.bz2" + [ -e "$fn1" ] && tarball="$fn1" && echo "$ARCH tarball found" + [ -e "$fn2" ] && tarball="$fn2" && echo "$(uname -m) tarball found" + [ -z "$tarball" ] && echo "ERROR: tarball not found" && exit 1 + # extract tarball + mkdir -p $install/usr/lib/thunderbird-$VERSION && + tar -xvf $tarball -C $install/usr/lib/thunderbird-$VERSION \ + --strip-components=1 && + # install symlink in /usr/bin + mkdir -p $install/usr/bin && + ln -sf ../lib/thunderbird-$VERSION/thunderbird $install/usr/bin } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib # program - cp -a $install/usr/lib/$PACKAGE $fs/usr/lib + printf "Installing program.." + mkdir -p $fs/usr/lib && + cp -a $install/usr/lib/$PACKAGE-$VERSION $fs/usr/lib && cp -a $install/usr/bin $fs/usr - # mcd - cp $stuff/autoconf.js $fs/usr/lib/$PACKAGE/defaults/pref - cp $stuff/thunderbird.cfg $fs/usr/lib/$PACKAGE - # mimetypes + status + # add Mission Control Desktop + printf "Installing Mission Control Desktop.." + cp $stuff/autoconf.js $fs/usr/lib/$PACKAGE-$VERSION/defaults/pref && + touch $fs/usr/lib/$PACKAGE-$VERSION/thunderbird.cfg + status + + # slitaz prefs. + printf "Installing SliTaz prefs.." + cp $stuff/distribution.ini $fs/usr/lib/$PACKAGE-$VERSION/distribution/ && + # slitaz search plugins + cp -a $stuff/searchplugins/* $fs/usr/lib/$PACKAGE-$VERSION/searchplugins && + status + + # mozilla-common files + # dictionaries + printf "Installing common dictionnaries.." + rm -rf $fs/usr/lib/$PACKAGE-$VERSION/dictionaries && + ln -sf ../mozilla-common-$VERSION/dictionaries \ + $fs/usr/lib/$PACKAGE-$VERSION/dictionaries + status + # plugin-container + printf "Installing common plugin-container" + rm -f $fs/usr/lib/$PACKAGE-$VERSION/plugin-container && + ln -sf ../mozilla-common-$VERSION/plugin-container \ + $fs/usr/lib/$PACKAGE-$VERSION/plugin-container + status + # mozilla-xremote-client + printf "Installing common mozilla-xremote-client" + rm -f $fs/usr/lib/$PACKAGE-$VERSION/mozilla-xremote-client && + ln -sf ../mozilla-common-$VERSION/mozilla-xremote-client \ + $fs/usr/lib/$PACKAGE-$VERSION/mozilla-xremote-client + status + # components/libdbusservice.so + # components/libmozgnome.so + for file in libdbusservice.so libmozgnome.so; do + printf "Installing common components/$file" + rm -f $fs/usr/lib/$PACKAGE-$VERSION/components/$file && + ln -sf ../../mozilla-common-$VERSION/components/$file \ + $fs/usr/lib/$PACKAGE-$VERSION/components/$file + status + done + # chrome.manifest + printf "Installing common chrome.manifest" + rm -f $fs/usr/lib/$PACKAGE-$VERSION/chrome.manifest && + ln -sf ../mozilla-common-$VERSION/chrome.manifest \ + $fs/usr/lib/$PACKAGE-$VERSION/chrome.manifest + status + + # run-mozilla.sh + printf "Installing common run-mozilla.sh" + rm -f $fs/usr/lib/$PACKAGE-$VERSION/run-mozilla.sh && + ln -sf ../mozilla-common-$VERSION/run-mozilla.sh \ + $fs/usr/lib/$PACKAGE-$VERSION/run-mozilla.sh + status + + # libmozalloc.so + printf "Installing common libmozalloc.so" + rm -f $fs/usr/lib/$PACKAGE-$VERSION/libmozalloc.so && + ln -sf ../mozilla-common-$VERSION/libmozalloc.so \ + $fs/usr/lib/$PACKAGE-$VERSION/libmozalloc.so + status } diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/README --- a/thunderbird/stuff/README Sat Mar 16 21:33:14 2013 +0100 +++ b/thunderbird/stuff/README Sat Mar 16 21:36:55 2013 +0100 @@ -1,8 +1,6 @@ +Thunderbird is buit from the official Mozilla source code. +The stuff/mozconfig file contains all configuration options, +it is copied in the mozilla source code before the build process. -Tazwok build Thunderbird from the official Mozilla source code, we use a .mozconfig -file to set all configure options. SliTaz thunderbird.mozconfig.conf is copied in the -mozilla source code with the command 'tazwok cook'. So if you want to make -some changes, edit thunderbird.mozconfig.conf. - -- domcox +So if you want to make some changes to tb, edit stuff/mozconfig. diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/distribution.ini --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thunderbird/stuff/distribution.ini Sat Mar 16 21:36:55 2013 +0100 @@ -0,0 +1,59 @@ +# Partner Distribution Configuration File +# Mozilla Thunderbird with Example Dist settings + +# NOTE! These three are required. +# id: short string unique to this distribution +# about: a short descriptive (ui-visible) string for this +# distribution +# version: version of the extra distribution pieces (not the version +# of Thunderbird) + +[Global] +id=SliTaz GNU/Linux +version=5.0 +about=Distribution Edition +about.fr=Édition pour la distribution + +# This section contains the global js prefs. You do should not list +# here the localized preferences (see below) + +# Boolean preferences should be 'true' or 'false', w/o quotes. e.g.: +# my.bool.preference=true +# +# Integer preferences should be unquoted numbers. e.g.: +# my.int.preference=123 +# +# String preferences should be in quotes. e.g.: +# my.string.preference="foo" + +[Preferences] +# Use LANG environment variable to choose locale +intl.locale.matchOS=true +# Disable default mailer checking +mail.shell.checkDefaultMail=false +app.distributor="SliTaz" +app.distributor.channel="" +# Forbid application updates +app.update.enabled=false + +# This section is used as a template for locale-specific properties +# files. They work similarly to the GlobalPrefs section, except that +# the %LOCALE% string gets substituted with the language string. + +[LocalizablePreferences] +#app.releaseNotesURL="http://example.org/%LOCALE%/%LOCALE%/" +#mailnews.start_page.welcome_url="http://example.com/%APP%/firstrun?locale=%LOCALE%version=%VERSION%&os=%OS%&buildid=%APPBUILDID%" + +# This section is an example of an override for a particular locale. +# The override sections do not interpolate %LOCALE% into strings. +# Preferences set in override sections are *merged* with the +# localizable defaults. That is, if you want a pref in +# [LocalizablePreferences] to not be set in a particular locale, +# you'll need to unset it explicitly ("pref.name=" on a line of its +# own). + +[LocalizablePreferences-en-US] +#app.releaseNotesURL="http://example.com/relnotes/" +#mailnews.start_page.welcome_url="http://example.com/firstrun/" + + diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/mimeTypes.rdf --- a/thunderbird/stuff/mimeTypes.rdf Sat Mar 16 21:33:14 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/mozconfig --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thunderbird/stuff/mozconfig Sat Mar 16 21:36:55 2013 +0100 @@ -0,0 +1,91 @@ +# mozconfig file for building thunderbird (17.0.0esr) on SliTaz + +# This file contains the options used in the Thunderbird 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. + +# tb for slitaz: +ac_add_options --with-distribution-id=slitaz + +# we want to build thunderbird: +ac_add_options --enable-application=mail + +# 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@/obj-thunderbird + +# Specify arch option and level of optimization: +ac_add_options --enable-optimize="$CFLAGS -Wno-all -Wno-extra -Wno-empty-body \ +-Wno-type-limits -Wno-unused-result -Wno-attributes -Wno-enum-compare \ +-Wno-multichar" + +# Issue all warnings demanded by strict ANSI C +ac_add_options --disable-pedantic + +# Speed up the build by running several jobs (set the number of CPU cores): +mk_add_options MOZ_MAKE_FLAGS="-j$(grep processor /proc/cpuinfo | wc -l)" + +# Reduce the log size: +ac_add_options --silent + +# Recommended dependencies: +ac_add_options --enable-system-sqlite +ac_add_options --with-system-libevent +ac_add_options --with-system-libvpx +ac_add_options --with-system-nspr +ac_add_options --with-system-nss + +# Uncomment these lines if you have installed optional dependencies: +#ac_add_options --enable-system-hunspell +#ac_add_options --enable-startup-notification + +# If you you do not want dbus-glib, comment out this line: +#ac_add_options --disable-dbus + +# If you have installed wireless-tools comment out this line: +ac_add_options --disable-necko-wifi + +# If you have installed libnotify comment out this line: +#ac_add_options --disable-libnotify + +# We dont use --enable-official-branding since we dont have any authorization +# to use trademarks per http://www.mozilla.org/foundation/trademarks/ +ac_add_options --enable-official-branding + +# It is recommended not to touch anything below this line +ac_add_options --prefix=/usr + +ac_add_options --disable-crashreporter +ac_add_options --disable-installer +ac_add_options --disable-updater +ac_add_options --disable-debug +ac_add_options --disable-tests + +ac_add_options --enable-strip +ac_add_options --enable-install-strip + +ac_add_options --enable-gio +ac_add_options --enable-safe-browsing +ac_add_options --enable-url-classifier + +ac_add_options --enable-system-ffi +ac_add_options --enable-system-pixman + +ac_add_options --enable-shared-js +ac_add_options --with-pthreads + +ac_add_options --with-system-bz2 +ac_add_options --with-system-jpeg +#ac_add_options --with-system-png # features missing +ac_add_options --with-system-zlib + +ac_add_options --disable-gconf +#ac_add_options --enable-system-cairo # crash +ac_add_options --disable-logging diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/searchplugins/duckduckgo-ssl.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thunderbird/stuff/searchplugins/duckduckgo-ssl.xml Sat Mar 16 21:36:55 2013 +0100 @@ -0,0 +1,11 @@ + +DuckDuckGo (SSL) +DuckDuckGo is a search engine that does not collect or share personally identifiable information. This search bar add-on utilizes SSL to protect searches between You and DuckDuckGo. +UTF-8 +data:image/x-icon;base64,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 +https://duckduckgo.com/ + + + + + \ No newline at end of file diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/searchplugins/slitaz.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thunderbird/stuff/searchplugins/slitaz.xml Sat Mar 16 21:36:55 2013 +0100 @@ -0,0 +1,30 @@ + +SliTaz +SliTaz GNU/Linux - Google Search +ISO-8859-1 + +data:image/png;base64,iVBORw0KGgoAAAANSUhEUg +AAABAAAAAQCAYAAAAf8/9hAAACwUlEQVQ4ja1QXUhaARg9KoQRrbA +Z67aLuChTI8VkmyVsT7W/CIIMX0IujB4iYkQPgxgDQQp6jtF6ioJNmANlaw2 +CEdFGoo7k3sTKTJ1dvV6otLWJd+0lw0W97cD38n3nnO9wgP+N4+PjOgBgG +OZRMpk0nK1FPM9rgsFgLwBRkQMA4lKxz+fr5jhO6XK5nuXz+QJBEP7iraamhgm +FQqpAINDj9/sfplKpW/8Y7O7u6j0ej4Wm6YZoNErq9frPJd6nAGA2m2cdDsdLgiCC09 +PTz8+vh4eHMoqilhcXFwdbW1vTHMcVI4oYhlGUpjSZTBGv12ttb2//cZ4gFovdX11dv +V1ZWXnAsuy1UChkdDqdkv7+/i8ajSZit9tfAYDb7bal0+nqQqHwZ2dn5wbP8zcBAB6 +PZ4QgiJPe3t610dHRNZIkfzkcjnmRSCQAEDo7OzeHh4ffGAwGYWxszGU2mzeNRmO +02AMAgGVZ5cTExAJBEAKAS6eiokKgKOq7z+frBiACAGSzWXlHR0dEqVTmdTpdWi6X +X2lQW1srqFSqo/r6+oLJZIpyHFcnZlm2IZPJVLvd7idKpXJLq9VuUhT1tbQ4iUSCmZmZa +alU+rOnp+fj0tJSfyqVku3t7WWwsbFxz2q1Lre1tcXHx8dnaZou6+rqCpR+lkgkwv7+vjY +SieiqqqoKk5OTTpvN9gEAxDKZ7ECtVm+3tLQEjUbjN61Wm0+n09dLE5Akmc3lctunp6d +lzc3NMYVC4bVYLG8BQMyyLKPT6RJ9fX3vEomEAgCampoipQZDQ0OvGxsbf8/Pzw9O +TU2NSKXS8lwut3BO4HleS9N0md1ufw8A6+vrD2Qy2YlYLBYGBgY+xePxcoZh7s7Nzb +1wOp2STCajxmUIh8N3wuHwYwBIJpOKra0tw9kDcmVl5emloos4Ojq6fnGXzWblV/H/A +kxASraqWon9AAAAAElFTkSuQmCC + + + + + + + diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/thunderbird-3.0-lang.patch --- a/thunderbird/stuff/thunderbird-3.0-lang.patch Sat Mar 16 21:33:14 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ ---- comm-1.9.1/mozilla/modules/libpref/src/init/all.js 2009-10-11 02:12:44.000000000 +0200 -+++ comm-1.9.1/mozilla/modules/libpref/src/init/all.js 2009-09-16 02:56:45.000000000 +0200 -@@ -890,7 +890,7 @@ - pref("intl.charset.detector", "chrome://global/locale/intl.properties"); - pref("intl.charset.default", "chrome://global-platform/locale/intl.properties"); - pref("intl.ellipsis", "chrome://global-platform/locale/intl.properties"); --pref("intl.locale.matchOS", false); -+pref("intl.locale.matchOS", true); - // fallback charset list for Unicode conversion (converting from Unicode) - // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes) - // for ISO-8859-1 diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/thunderbird-install-dir.patch --- a/thunderbird/stuff/thunderbird-install-dir.patch Sat Mar 16 21:33:14 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,42 +0,0 @@ -diff -Nur comm-beta.orig/config/autoconf.mk.in comm-beta/config/autoconf.mk.in ---- comm-beta.orig/config/autoconf.mk.in 2011-11-06 14:39:51.064983780 +0000 -+++ comm-beta/config/autoconf.mk.in 2011-11-06 14:42:57.216735333 +0000 -@@ -65,8 +65,8 @@ - mandir = @mandir@ - idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) - --installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) --sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) -+installdir = $(libdir)/$(MOZ_APP_NAME) -+sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel - - MOZDEPTH = $(DEPTH)/mozilla - DIST = $(MOZDEPTH)/dist -diff -Nur comm-beta.orig/mozilla/config/autoconf.mk.in comm-beta/mozilla/config/autoconf.mk.in ---- comm-beta.orig/mozilla/config/autoconf.mk.in 2011-11-06 14:39:41.771562967 +0000 -+++ comm-beta/mozilla/config/autoconf.mk.in 2011-11-06 14:44:18.404165515 +0000 -@@ -68,8 +68,8 @@ - mandir = @mandir@ - idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) - --installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) --sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) -+installdir = $(libdir)/$(MOZ_APP_NAME) -+sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel - - DIST = $(DEPTH)/dist - LIBXUL_SDK = @LIBXUL_SDK@ -diff -Nur comm-beta.orig/mozilla/js/src/config/autoconf.mk.in comm-beta/mozilla/js/src/config/autoconf.mk.in ---- comm-beta.orig/mozilla/js/src/config/autoconf.mk.in 2011-11-06 14:39:48.014955070 +0000 -+++ comm-beta/mozilla/js/src/config/autoconf.mk.in 2011-11-06 14:44:32.977635875 +0000 -@@ -61,8 +61,8 @@ - datadir = @datadir@ - mandir = @mandir@ - --installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) --sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) -+installdir = $(libdir)/$(MOZ_APP_NAME) -+sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel - - TOP_DIST = @TOP_DIST@ - ifneq (,$(filter /%,$(TOP_DIST))) diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/thunderbird.cfg --- a/thunderbird/stuff/thunderbird.cfg Sat Mar 16 21:33:14 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,8 +0,0 @@ -// SliTaz 2012 -// -try { - pref("network.protocol-handler.app.http", "/usr/bin/midori"); - pref("network.protocol-handler.app.https", "/usr/bin/midori"); -} catch(e) { - displayError("pref", e); -} diff -r 1921d455d1f6 -r cd72738a73b8 thunderbird/stuff/thunderbird.mozconfig.conf --- a/thunderbird/stuff/thunderbird.mozconfig.conf Sat Mar 16 21:33:14 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,172 +0,0 @@ -# from Linux from scratch - -# This file contains the options used in the Thunderbird 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. - -# slitaz -ac_add_options --with-distribution-id=slitaz - -# specify that we want to build thunderbird -ac_add_options --enable-application=mail - -# sepcify that we want to build the Lightning calendar extension as per the -# Mozilla distributed Thunderbird. -# ac_add_options --enable-calendar - -# 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@/../thunderbird-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 Thunderbird 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 -ac_add_options --with-system-bz2 - -# (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. -# Use --disable-crashreporter to disable the crash reporter. -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 thunderbird 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 - -# Enable the build of static internal libs (this is currently required, until -# Thunderbird 3.1, DO NOT COMMENT, see note below about XulRunner). -ac_add_options --enable-static - -# 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 causes the installed binaries to have the official -# Thunderbird name embedded in them. Due to license restrictions, you -# may not distribute binaries created using this option. It also -# means you get a popup EULA when you first run thunderbird. -ac_add_options --enable-official-branding - -# This option is used to enable source tree included LDAP support in -# the Firefox binaries. This used to be required for mozab support in -# OpenOffice, however, is now deprecated. -# note: --disable-ldap breaks thunderbird build -#ac_add_options --disable-ldap - -# 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 - -# Enable strong cryptography (This is explicitly required if you plan to use -# the enigmail extension for Thunderbird). -ac_add_options --enable-crypto - -# Point to the xulrunner libraries - comment these for a standalone client -# DO NOT UNCOMMENT THESE - System XULRunner is broken until Thunderbird -# development catches up with XULRunner-1.9.2 (TB-3.1, est. April 6, 2010). -#ac_add_options --with-system-libxul -#ac_add_options --with-default-mozilla-five-home=/usr/lib/xulrunner-devel-1.9.2.8 - -# disable webm video format -ac_add_options --disable-webm - -# disable debug -ac_add_options --disable-debug - -# disable JavaScript debug library -#ac_add_options --disable-jsd - -# disable printing support -ac_add_options --disable-printing - -# disable building of ANGLE for WebGL->D3D translation -ac_add_options --disable-angle - -# do not build test libraries & programs -ac_add_options --disable-tests - -# disable feed handling and processing components -ac_add_options --disable-feeds - -# disable mozStorage module and related components -#ac_add_options --disable-storage - -# disable logging facilities -ac_add_options --disable-logging - -# use system libevent -ac_add_options --with-system-libevent - -# disable java -#ac_add_options --disable-javaxpcom