diff --git a/old-configure.in b/old-configure.in index 045257cd82..0b78f2b232 100644 --- a/old-configure.in +++ b/old-configure.in @@ -2315,6 +2315,7 @@ MOZ_GMP_SANDBOX= MOZ_SANDBOX=1 MOZ_BINARY_EXTENSIONS= MOZ_DEVTOOLS=server +MOZ_JETPACK=1 case "$target_os" in mingw*) @@ -4791,6 +4792,20 @@ dnl = dnl ======================================================== MOZ_ARG_HEADER(Misc. Options) +dnl ======================================================== +dnl = Disable Jetpack +dnl ======================================================== +MOZ_ARG_DISABLE_BOOL(jetpack, +[ --disable-jetpack Disable Jetpack Support Code], + MOZ_JETPACK=, + MOZ_JETPACK=1) + +if test -n "$MOZ_JETPACK"; then + AC_DEFINE(MOZ_JETPACK) +fi + +AC_SUBST(MOZ_JETPACK) + dnl ======================================================== dnl = Define default location for MOZILLA_FIVE_HOME dnl ======================================================== diff --git a/toolkit/moz.build b/toolkit/moz.build index ea7cc390d8..9444a51795 100644 --- a/toolkit/moz.build +++ b/toolkit/moz.build @@ -9,7 +9,6 @@ DIRS += [ 'content', 'forgetaboutsite', 'identity', - 'jetpack', 'locales', 'modules', 'mozapps/downloads', @@ -21,6 +20,9 @@ DIRS += [ 'themes', ] +if CONFIG['MOZ_JETPACK']: + DIRS += ['jetpack'] + if CONFIG['MOZ_WEBEXTENSIONS']: DIRS += ['mozapps/webextensions'] else: