2008-07-22 16:21:15 +04:00
|
|
|
#! /bin/sh
|
2012-05-30 20:48:24 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2008-07-22 16:21:15 +04:00
|
|
|
|
2017-10-17 00:46:30 +03:00
|
|
|
. ${_topsrcdir}/$MOZ_BUILD_APP/../comm-confvars.sh
|
2017-02-26 18:45:39 +03:00
|
|
|
|
2012-07-05 18:25:02 +04:00
|
|
|
MOZ_APP_BASENAME=Thunderbird
|
2008-07-22 16:21:15 +04:00
|
|
|
MOZ_APP_NAME=thunderbird
|
|
|
|
MOZ_UPDATER=1
|
2016-12-17 15:56:45 +03:00
|
|
|
|
|
|
|
if test "$OS_ARCH" = "WINNT" -o \
|
|
|
|
"$OS_ARCH" = "Linux"; then
|
|
|
|
MOZ_BUNDLED_FONTS=1
|
|
|
|
fi
|
|
|
|
|
2012-08-17 00:18:43 +04:00
|
|
|
if test "$OS_ARCH" = "WINNT"; then
|
2017-02-23 23:11:52 +03:00
|
|
|
MOZ_MAINTENANCE_SERVICE=1
|
2014-06-30 06:22:28 +04:00
|
|
|
if ! test "$HAVE_64BIT_BUILD"; then
|
2012-08-17 00:18:43 +04:00
|
|
|
MOZ_VERIFY_MAR_SIGNATURE=1
|
|
|
|
fi
|
|
|
|
fi
|
2012-06-04 18:03:22 +04:00
|
|
|
|
2011-06-24 02:50:20 +04:00
|
|
|
MOZ_APP_VERSION_TXT=${_topsrcdir}/$MOZ_BUILD_APP/config/version.txt
|
2011-03-21 13:29:59 +03:00
|
|
|
MOZ_APP_VERSION=`cat $MOZ_APP_VERSION_TXT`
|
2016-06-12 20:30:51 +03:00
|
|
|
MOZ_APP_VERSION_DISPLAY_TXT=${_topsrcdir}/$MOZ_BUILD_APP/config/version_display.txt
|
|
|
|
MOZ_APP_VERSION_DISPLAY=`cat $MOZ_APP_VERSION_DISPLAY_TXT`
|
2008-07-22 16:31:43 +04:00
|
|
|
THUNDERBIRD_VERSION=$MOZ_APP_VERSION
|
2011-03-21 13:29:59 +03:00
|
|
|
|
2017-02-26 18:45:39 +03:00
|
|
|
MOZ_BRANDING_DIRECTORY=$commreltopsrcdir/mail/branding/nightly
|
2018-01-31 23:10:46 +03:00
|
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=$commreltopsrcdir/mail/branding/thunderbird
|
2017-02-26 18:45:39 +03:00
|
|
|
|
2013-02-18 16:05:28 +04:00
|
|
|
MOZ_APP_ID={3550f703-e582-4d05-9a08-453d09bdfdc6}
|
2012-06-04 18:03:22 +04:00
|
|
|
# This should usually be the same as the value MAR_CHANNEL_ID.
|
|
|
|
# If more than one ID is needed, then you should use a comma separated list
|
|
|
|
# of values.
|
2012-08-14 11:43:26 +04:00
|
|
|
ACCEPTED_MAR_CHANNEL_IDS=thunderbird-comm-central
|
2012-06-04 18:03:22 +04:00
|
|
|
# The MAR_CHANNEL_ID must not contain the following 3 characters: ",\t "
|
2012-08-14 11:43:26 +04:00
|
|
|
MAR_CHANNEL_ID=thunderbird-comm-central
|
2014-12-20 11:23:23 +03:00
|
|
|
MOZ_PROFILE_MIGRATOR=1
|
2015-05-20 21:28:01 +03:00
|
|
|
MOZ_BINARY_EXTENSIONS=1
|
2016-05-22 17:02:08 +03:00
|
|
|
MOZ_SEPARATE_MANIFEST_FOR_THEME_OVERRIDES=1
|
2015-09-09 11:21:54 +03:00
|
|
|
|
|
|
|
# Enable building ./signmar and running libmar signature tests
|
|
|
|
MOZ_ENABLE_SIGNMAR=1
|
2016-06-10 02:02:24 +03:00
|
|
|
|
|
|
|
MOZ_DEVTOOLS=all
|