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
|
|
|
|
|
|
|
MOZ_APP_NAME=thunderbird
|
2016-12-17 15:56:45 +03:00
|
|
|
|
2012-08-17 00:18:43 +04:00
|
|
|
if test "$OS_ARCH" = "WINNT"; then
|
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
|
|
|
|
2020-06-08 07:28:07 +03:00
|
|
|
BROWSER_CHROME_URL=chrome://messenger/content/extensionPopup.xhtml
|
2018-07-25 01:57:28 +03:00
|
|
|
|
2022-11-03 07:20:46 +03:00
|
|
|
MOZ_BRANDING_DIRECTORY=comm/mail/branding/nightly
|
|
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=comm/mail/branding/thunderbird
|
2023-10-23 16:34:38 +03:00
|
|
|
# This looks silly, but it's for the benefit of MSIX repackaging.
|
|
|
|
if test -n "$THUNDERBIRD_OFFICIAL_BRANDING"; then
|
|
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=comm/mail/branding/$THUNDERBIRD_OFFICIAL_BRANDING
|
|
|
|
fi
|
2017-02-26 18:45:39 +03:00
|
|
|
|
2013-02-18 16:05:28 +04:00
|
|
|
MOZ_APP_ID={3550f703-e582-4d05-9a08-453d09bdfdc6}
|
2019-07-10 01:44:24 +03:00
|
|
|
|
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
|
2019-02-28 12:26:39 +03:00
|
|
|
|
|
|
|
NSS_EXTRA_SYMBOLS_FILE=../comm/mailnews/nss-extra.symbols
|