diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-21 13:07:10 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-21 13:07:10 +0200 |
commit | 37f2b54dc594cfe7dbe7db5edc9b9cf820ff5188 (patch) | |
tree | e670cb4271837ecdaa5a430ba4f560fed4f440e0 | |
parent | bbe05037998261a7b5323acc123d038e45c83b77 (diff) | |
download | uxp-37f2b54dc594cfe7dbe7db5edc9b9cf820ff5188.tar.gz |
[AM] Clean up addon-signing build leftovers.
-rw-r--r-- | build/mozconfig.common | 5 | ||||
-rw-r--r-- | old-configure.in | 9 | ||||
-rwxr-xr-x | python/mozbuild/mozbuild/mozinfo.py | 2 | ||||
-rw-r--r-- | toolkit/modules/AppConstants.jsm | 7 |
4 files changed, 0 insertions, 23 deletions
diff --git a/build/mozconfig.common b/build/mozconfig.common index 3d2d0b2895..1bdf69ddc5 100644 --- a/build/mozconfig.common +++ b/build/mozconfig.common @@ -16,11 +16,6 @@ ac_add_options --enable-crashreporter ac_add_options --enable-release -# Disable checking that add-ons are signed by the trusted root -MOZ_ADDON_SIGNING=${MOZ_ADDON_SIGNING-0} -# Disable enforcing that add-ons are signed by the trusted root -MOZ_REQUIRE_SIGNING=${MOZ_REQUIRE_SIGNING-0} - ac_add_options --enable-js-shell . "$topsrcdir/build/mozconfig.automation" diff --git a/old-configure.in b/old-configure.in index 45ac07aca8..2965f60b75 100644 --- a/old-configure.in +++ b/old-configure.in @@ -4929,15 +4929,6 @@ AC_SUBST(MOZ_FIX_LINK_PATHS) AC_SUBST(MOZ_POST_PROGRAM_COMMAND) AC_SUBST(MOZ_LINKER_EXTRACT) -AC_SUBST(MOZ_ADDON_SIGNING) -if test "$MOZ_ADDON_SIGNING" = 1; then - AC_DEFINE(MOZ_ADDON_SIGNING) -fi -AC_SUBST(MOZ_REQUIRE_SIGNING) -if test "$MOZ_REQUIRE_SIGNING" = 1; then - AC_DEFINE(MOZ_REQUIRE_SIGNING) -fi - AC_SUBST(MOZ_JSDOWNLOADS) if test -n "$MOZ_JSDOWNLOADS"; then AC_DEFINE(MOZ_JSDOWNLOADS) diff --git a/python/mozbuild/mozbuild/mozinfo.py b/python/mozbuild/mozbuild/mozinfo.py index 230ca119ae..3bdde249ce 100755 --- a/python/mozbuild/mozbuild/mozinfo.py +++ b/python/mozbuild/mozbuild/mozinfo.py @@ -88,8 +88,6 @@ def build_dict(config, env=os.environ): d['telemetry'] = substs.get('MOZ_TELEMETRY_REPORTING') == '1' d['tests_enabled'] = substs.get('ENABLE_TESTS') == "1" d['bin_suffix'] = substs.get('BIN_SUFFIX', '') - d['addon_signing'] = substs.get('MOZ_ADDON_SIGNING') == '1' - d['require_signing'] = substs.get('MOZ_REQUIRE_SIGNING') == '1' d['official'] = bool(substs.get('MC_OFFICIAL')) def guess_platform(): diff --git a/toolkit/modules/AppConstants.jsm b/toolkit/modules/AppConstants.jsm index 40aaadbf07..5eea04b0fb 100644 --- a/toolkit/modules/AppConstants.jsm +++ b/toolkit/modules/AppConstants.jsm @@ -194,13 +194,6 @@ MOZ_SAFE_BROWSING: false, #endif - MOZ_REQUIRE_SIGNING: -#ifdef MOZ_REQUIRE_SIGNING - true, -#else - false, -#endif - MENUBAR_CAN_AUTOHIDE: #ifdef MENUBAR_CAN_AUTOHIDE true, |