
This is an automated email from the git hooks/post-receive script. pierov pushed a commit to branch tor-browser-102.3.0esr-12.0-2 in repository tor-browser. commit d5ed7ed3a580227672a87eefa5af362e752d2274 Author: Haleema Khan <hsadia538@gmail.com> AuthorDate: Thu Sep 29 20:52:29 2022 +0500 fixup! Base Browser's .mozconfigs. Bug 41164: Add a configure option to enable base-browser --- browser/config/mozconfigs/base-browser | 2 ++ moz.configure | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/browser/config/mozconfigs/base-browser b/browser/config/mozconfigs/base-browser index 1896b995a8d4..285f43fec4ef 100644 --- a/browser/config/mozconfigs/base-browser +++ b/browser/config/mozconfigs/base-browser @@ -30,5 +30,7 @@ ac_add_options --enable-proxy-bypass-protection # could allow proxy bypass, and override a number of other preferences we set ac_add_options --disable-system-policies +ac_add_options --enable-base-browser + # Disable telemetry ac_add_options MOZ_TELEMETRY_REPORTING= diff --git a/moz.configure b/moz.configure index 411a2ebbfbeb..be5b761805ae 100755 --- a/moz.configure +++ b/moz.configure @@ -1016,6 +1016,14 @@ def zlib_in_mozglue(system_zlib, js_shared, linker, os): set_config("ZLIB_IN_MOZGLUE", zlib_in_mozglue) set_define("ZLIB_IN_MOZGLUE", zlib_in_mozglue) +option( + "--enable-base-browser", + help="Enable Base Browser" +) + +set_config("BASE_BROWSER", True, when="--enable-base-browser") +set_define("BASE_BROWSER", True, when="--enable-base-browser") + option( "--with-relative-profile", -- To stop receiving notification emails like this one, please contact the administrator of this repository.