~ubuntu-branches/ubuntu/quantal/enigmail/quantal-security

« back to all changes in this revision

Viewing changes to mail/confvars.sh

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2013-09-13 16:02:15 UTC
  • mfrom: (0.12.16)
  • Revision ID: package-import@ubuntu.com-20130913160215-u3g8nmwa0pdwagwc
Tags: 2:1.5.2-0ubuntu0.12.10.1
* New upstream release v1.5.2 for Thunderbird 24

* Build enigmail using a stripped down Thunderbird 17 build system, as it's
  now quite difficult to build the way we were doing previously, with the
  latest Firefox build system
* Add debian/patches/no_libxpcom.patch - Don't link against libxpcom, as it
  doesn't exist anymore (but exists in the build system)
* Add debian/patches/use_sdk.patch - Use the SDK version of xpt.py and
  friends
* Drop debian/patches/ipc-pipe_rename.diff (not needed anymore)
* Drop debian/patches/makefile_depth.diff (not needed anymore)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# This Source Code Form is subject to the terms of the Mozilla Public
 
3
# License, v. 2.0. If a copy of the MPL was not distributed with this
 
4
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
5
 
 
6
MOZ_APP_BASENAME=Thunderbird
 
7
MOZ_APP_NAME=thunderbird
 
8
MOZ_UPDATER=1
 
9
MOZ_THUNDERBIRD=1
 
10
MOZ_CHROME_FILE_FORMAT=omni
 
11
MOZ_NO_ACTIVEX_SUPPORT=1
 
12
MOZ_ACTIVEX_SCRIPTING_SUPPORT=
 
13
if [ "$COMM_BUILD" ]; then
 
14
  MOZ_LDAP_XPCOM=1
 
15
fi
 
16
MOZ_COMPOSER=1
 
17
if test "$OS_ARCH" = "WINNT"; then
 
18
  if ! test "$HAVE_64BIT_OS"; then
 
19
    MOZ_VERIFY_MAR_SIGNATURE=1
 
20
    MOZ_MAINTENANCE_SERVICE=1
 
21
  fi
 
22
fi
 
23
 
 
24
MOZ_SAFE_BROWSING=1
 
25
MOZ_MORK=1
 
26
if test -z "$MOZ_INCOMPLETE_EXTERNAL_LINKAGE"; then
 
27
MOZ_APP_COMPONENT_LIBS="xpautocomplete mailcomps $MAIL_COMPONENT $LDAP_COMPONENT $MORK_COMPONENT"
 
28
MOZ_APP_COMPONENT_MODULES="MODULE(xpAutoComplete) MODULE(nsMailCompsModule) $MAIL_MODULE $LDAP_MODULE $MORK_MODULE"
 
29
MOZ_APP_EXTRA_LIBS="$LDAP_LIBS"
 
30
fi
 
31
 
 
32
MOZ_APP_VERSION_TXT=${_topsrcdir}/$MOZ_BUILD_APP/config/version.txt
 
33
MOZ_APP_VERSION=`cat $MOZ_APP_VERSION_TXT`
 
34
THUNDERBIRD_VERSION=$MOZ_APP_VERSION
 
35
 
 
36
MOZ_BRANDING_DIRECTORY=mail/branding/aurora
 
37
MOZ_OFFICIAL_BRANDING_DIRECTORY=other-licenses/branding/thunderbird
 
38
 
 
39
if [ "$MOZ_ESR" ]; then
 
40
  # This should usually be the same as the value MAR_CHANNEL_ID.
 
41
  # If more than one ID is needed, then you should use a comma separated list
 
42
  # of values.
 
43
  ACCEPTED_MAR_CHANNEL_IDS=thunderbird-comm-esr
 
44
  # The MAR_CHANNEL_ID must not contain the following 3 characters: ",\t "
 
45
  MAR_CHANNEL_ID=thunderbird-comm-esr
 
46
else
 
47
  # This should usually be the same as the value MAR_CHANNEL_ID.
 
48
  # If more than one ID is needed, then you should use a comma separated list
 
49
  # of values.
 
50
  ACCEPTED_MAR_CHANNEL_IDS=thunderbird-comm-release
 
51
  # The MAR_CHANNEL_ID must not contain the following 3 characters: ",\t "
 
52
  MAR_CHANNEL_ID=thunderbird-comm-release
 
53
fi