Ticket #3026: thunderbird-mozconfig-3.0.1

File thunderbird-mozconfig-3.0.1, 4.3 KB (added by Robert L. Inglis, 14 years ago)
Line 
1# This file contains the options used in the Thunderbird build. You may
2# need to specify additional options for your specific build needs.
3# Use the information provided by running './configure --help' to
4# help you determine if you need to add any additional options.
5# Some additional options can be added by uncommenting the examples
6# in this file or adding options by inserting a line containing
7# 'ac_add_options --some-option-you-need'.
8
9ac_add_options --enable-application=mail
10# Use the default settings specified in the source tree
11#. $topsrcdir/mail/config/mozconfig
12
13# Create an object directory and specify to build the package in that
14# directory. If desired, modify the location of the object directory
15# to a directory inside the source tree by removing '../' from the
16# line below.
17mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../thunderbird-build
18ac_add_options --enable-optimize=-O3
19ac_add_options --enable-static
20
21# Specify the installation prefix. If you would prefer Thunderbird
22# installed in a different prefix, modify the line below to fit
23# your needs. You'll also need to modify some of the instructions in
24# the BLFS book to point to your desired prefix.
25ac_add_options --prefix=/usr
26
27# These options are used so that the Thunderbird binaries are linked to
28# the system-installed copies of the specified libraries instead of
29# the source tree code which may not be the most recent versions.
30ac_add_options --with-system-zlib
31ac_add_options --with-system-png
32ac_add_options --with-system-jpeg
33ac_add_options --with-system-sqlite
34ac_add_options --enable-system-cairo
35ac_add_options --with-libul-sdk=/usr/lib/xulrunner-devel-1.9.2
36
37# This option causes the installed binaries to have the official
38# Thunderbird name embedded in them. Due to license restrictions, you
39# may not distribute binaries created using this option.
40ac_add_options --enable-official-branding
41ac_add_options --enable-calendar
42# This option specifies to include support for rendering the HTML
43# <canvas></canvas> tag in the Thunderbird mail client.
44ac_add_options --enable-canvas
45
46# This option is used so that the debugging symbols are removed from
47# the installed binaries during the installation process. Comment out
48# this option if you may have a need to retain the debugging symbols
49# in the installed binaries. Note that this can substantially
50# increase the size of the installed binaries.
51ac_add_options --enable-strip
52
53# This option is added so that test libraries and programs are not
54# built. These would only be required for debugging purposes.
55ac_add_options --disable-tests
56
57# This option is added so that the Mozilla Installer program is not
58# built or installed. The program is not required for a BLFS
59# installation of Thunderbird.
60ac_add_options --disable-installer
61ac_add_options --disable-crashreporter
62ac_add_options --disable-updater
63# This option is used to disable the a11y support in the Thunderbird
64# binaries. Comment out this option if you require a11y support.
65ac_add_options --disable-accessibility
66
67# This option is used to enable source tree included LDAP support in
68# the Thunderbird binaries.
69ac_add_options --enable-ldap
70
71# This option is used to enable support for rendering SVG files in the
72# Thunderbird mail client. Uncomment the line below to enable the option.
73ac_add_options --enable-svg
74
75# Uncomment this option if you desire support for dual-monitor
76# display of Thunderbird using the X-Window Xinerama libraries.
77#ac_add_options --enable-xinerama
78
79# Complex scripts such as Thai can only be rendered in Thunderbird with
80# the help of Pango. This option significantly slows rendering, so only
81# use it if necessary.
82#ac_add_options --enable-pango
83
84# These two options enable support for building Thunderbird with
85# system-installed versions of the Network Security Services (NSS)
86# and Netscape Portable Runtime (NSPR) libraries. Uncomment both
87# lines to enable support for system-installed NSS/NSPR.
88ac_add_options --with-system-nss
89ac_add_options --with-system-nspr
90
91# This option identifies the default binary directory of the Thunderbird
92# installation and is used to locate Thunderbird's installed files. This
93# option is not required for end-user use, and is only used for
94# development purposes.
95ac_add_options --enable-safe-browsing
96ac_add_options --with-default-mozilla-five-home=/usr/lib/thunderbird-3.0.1
97