summaryrefslogtreecommitdiffstats
path: root/old-configure.in
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-17 14:28:22 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-17 14:28:22 -0500
commit74fbc810abbb060c0dc862c673b33d3f4c00bb7b (patch)
tree8b49c3edab719cbd66a326503e690e03deb9e209 /old-configure.in
parentb19cfd8e7b744ad8e3f3dcf9038c838f110ef17a (diff)
downloadUXP-74fbc810abbb060c0dc862c673b33d3f4c00bb7b.tar
UXP-74fbc810abbb060c0dc862c673b33d3f4c00bb7b.tar.gz
UXP-74fbc810abbb060c0dc862c673b33d3f4c00bb7b.tar.lz
UXP-74fbc810abbb060c0dc862c673b33d3f4c00bb7b.tar.xz
UXP-74fbc810abbb060c0dc862c673b33d3f4c00bb7b.zip
Make MOZ_SANBOX an enable bool in configure
Diffstat (limited to 'old-configure.in')
-rw-r--r--old-configure.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/old-configure.in b/old-configure.in
index f9e76e727..122e8987d 100644
--- a/old-configure.in
+++ b/old-configure.in
@@ -2312,7 +2312,7 @@ MOZ_TIME_MANAGER=
MOZ_AUDIO_CHANNEL_MANAGER=
MOZ_CONTENT_SANDBOX=
MOZ_GMP_SANDBOX=
-MOZ_SANDBOX=1
+MOZ_SANDBOX=
MOZ_BINARY_EXTENSIONS=
MOZ_JETPACK=1
MOZ_DEVTOOLS_SERVER=1
@@ -3933,6 +3933,11 @@ AC_SUBST(MOZ_NO_SMART_CARDS)
dnl ========================================================
dnl = Sandboxing support
dnl ========================================================
+MOZ_ARG_ENABLE_BOOL(sandbox,
+[ --enable-sandbox Enable sandboxing support],
+ MOZ_SANDBOX=1,
+ MOZ_SANDBOX=)
+
if test -n "$MOZ_TSAN" -o -n "$MOZ_ASAN"; then
# Bug 1182565: TSan conflicts with sandboxing on Linux.
# Bug 1287971: LSan also conflicts with sandboxing on Linux.
@@ -3943,11 +3948,6 @@ if test -n "$MOZ_TSAN" -o -n "$MOZ_ASAN"; then
esac
fi
-MOZ_ARG_DISABLE_BOOL(sandbox,
-[ --disable-sandbox Disable sandboxing support],
- MOZ_SANDBOX=,
- MOZ_SANDBOX=1)
-
dnl ========================================================
dnl = Content process sandboxing
dnl ========================================================