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 |
|
---|
9 | ac_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.
|
---|
17 | mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../thunderbird-build
|
---|
18 | ac_add_options --enable-optimize=-O3
|
---|
19 | ac_add_options --enable-static
|
---|
20 | # Specify the installation prefix. If you would prefer Thunderbird
|
---|
21 | # installed in a different prefix, modify the line below to fit
|
---|
22 | # your needs. You'll also need to modify some of the instructions in
|
---|
23 | # the BLFS book to point to your desired prefix.
|
---|
24 | ac_add_options --prefix=/usr
|
---|
25 |
|
---|
26 | # These options are used so that the Thunderbird binaries are linked to
|
---|
27 | # the system-installed copies of the specified libraries instead of
|
---|
28 | # the source tree code which may not be the most recent versions.
|
---|
29 | ac_add_options --with-system-zlib
|
---|
30 | ac_add_options --with-system-png
|
---|
31 | ac_add_options --with-system-jpeg
|
---|
32 | ac_add_options --enable-system-cairo
|
---|
33 |
|
---|
34 | # This option causes the installed binaries to have the official
|
---|
35 | # Thunderbird name embedded in them. Due to license restrictions, you
|
---|
36 | # may not distribute binaries created using this option.
|
---|
37 | ac_add_options --enable-official-branding
|
---|
38 |
|
---|
39 | # This option specifies to include support for rendering the HTML
|
---|
40 | # <canvas></canvas> tag in the Thunderbird mail client.
|
---|
41 | #ac_add_options --enable-canvas
|
---|
42 |
|
---|
43 | # This option is used so that the debugging symbols are removed from
|
---|
44 | # the installed binaries during the installation process. Comment out
|
---|
45 | # this option if you may have a need to retain the debugging symbols
|
---|
46 | # in the installed binaries. Note that this can substantially
|
---|
47 | # increase the size of the installed binaries.
|
---|
48 | ac_add_options --enable-strip
|
---|
49 |
|
---|
50 | # This option is added so that test libraries and programs are not
|
---|
51 | # built. These would only be required for debugging purposes.
|
---|
52 | ac_add_options --disable-tests
|
---|
53 |
|
---|
54 | # This option is added so that the Mozilla Installer program is not
|
---|
55 | # built or installed. The program is not required for a BLFS
|
---|
56 | # installation of Thunderbird.
|
---|
57 | ac_add_options --disable-installer
|
---|
58 | ac_add_options --disable-crashreporter
|
---|
59 | # This option is used to disable the a11y support in the Thunderbird
|
---|
60 | # binaries. Comment out this option if you require a11y support.
|
---|
61 | ac_add_options --disable-accessibility
|
---|
62 |
|
---|
63 | # This option is used to enable source tree included LDAP support in
|
---|
64 | # the Thunderbird binaries.
|
---|
65 | ac_add_options --enable-ldap
|
---|
66 |
|
---|
67 | # This option is used to enable support for rendering SVG files in the
|
---|
68 | # Thunderbird mail client. Uncomment the line below to enable the option.
|
---|
69 | ac_add_options --enable-svg
|
---|
70 |
|
---|
71 | # Uncomment this option if you desire support for dual-monitor
|
---|
72 | # display of Thunderbird using the X-Window Xinerama libraries.
|
---|
73 | #ac_add_options --enable-xinerama
|
---|
74 |
|
---|
75 | # Complex scripts such as Thai can only be rendered in Thunderbird with
|
---|
76 | # the help of Pango. This option significantly slows rendering, so only
|
---|
77 | # use it if necessary.
|
---|
78 | #ac_add_options --enable-pango
|
---|
79 |
|
---|
80 | # These two options enable support for building Thunderbird with
|
---|
81 | # system-installed versions of the Network Security Services (NSS)
|
---|
82 | # and Netscape Portable Runtime (NSPR) libraries. Uncomment both
|
---|
83 | # lines to enable support for system-installed NSS/NSPR.
|
---|
84 | ac_add_options --with-system-nss
|
---|
85 | ac_add_options --with-system-nspr
|
---|
86 |
|
---|
87 | # This option identifies the default binary directory of the Thunderbird
|
---|
88 | # installation and is used to locate Thunderbird's installed files. This
|
---|
89 | # option is not required for end-user use, and is only used for
|
---|
90 | # development purposes.
|
---|
91 | ac_add_options --with-default-mozilla-five-home=/usr/lib/thunderbird-3.0
|
---|
92 |
|
---|