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
|
|
|
|
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
|
|
|
|
MOZ_THUNDERBIRD=1
|
2010-12-15 11:22:59 +03:00
|
|
|
MOZ_CHROME_FILE_FORMAT=omni
|
2008-07-22 16:21:15 +04:00
|
|
|
MOZ_NO_ACTIVEX_SUPPORT=1
|
|
|
|
MOZ_ACTIVEX_SCRIPTING_SUPPORT=
|
2013-04-07 20:32:36 +04:00
|
|
|
MOZ_LDAP_XPCOM=1
|
2008-07-22 16:21:15 +04:00
|
|
|
MOZ_COMPOSER=1
|
2012-08-17 00:18:43 +04:00
|
|
|
if test "$OS_ARCH" = "WINNT"; then
|
|
|
|
if ! test "$HAVE_64BIT_OS"; then
|
|
|
|
MOZ_VERIFY_MAR_SIGNATURE=1
|
2012-08-23 00:44:03 +04:00
|
|
|
MOZ_MAINTENANCE_SERVICE=1
|
2012-08-17 00:18:43 +04:00
|
|
|
fi
|
|
|
|
fi
|
2012-06-04 18:03:22 +04:00
|
|
|
|
2008-07-22 16:21:15 +04:00
|
|
|
MOZ_SAFE_BROWSING=1
|
2013-06-20 20:47:51 +04:00
|
|
|
MOZ_MEDIA_NAVIGATOR=1
|
2010-04-01 19:42:06 +04:00
|
|
|
MOZ_MORK=1
|
2013-08-18 03:13:38 +04:00
|
|
|
MAIL_MODULE="MODULE(nsMailModule) MODULE(nsImportServiceModule)"
|
2009-01-09 17:37:26 +03: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`
|
2008-07-22 16:31:43 +04:00
|
|
|
THUNDERBIRD_VERSION=$MOZ_APP_VERSION
|
2011-03-21 13:29:59 +03:00
|
|
|
|
2012-11-30 03:39:50 +04:00
|
|
|
MOZ_UA_BUILDID=20100101
|
|
|
|
|
2011-06-24 02:50:20 +04:00
|
|
|
MOZ_BRANDING_DIRECTORY=mail/branding/nightly
|
2010-03-11 14:37:27 +03:00
|
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=other-licenses/branding/thunderbird
|
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
|
2013-09-09 19:35:59 +04:00
|
|
|
if test "$OS_TARGET" = "WINNT" -o "$OS_TARGET" = "Darwin"; then
|
|
|
|
MOZ_FOLD_LIBS=1
|
|
|
|
fi
|