mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 07:48:38 +09:00
Add a configure option to disable including jetpack
This commit is contained in:
parent
fa66cea7a8
commit
5672cd8138
2 changed files with 18 additions and 1 deletions
|
|
@ -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 ========================================================
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue