aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2020-09-09 08:30:24 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2020-09-09 08:30:24 -0400
commit833db940c6fe8b991906014a92cc5e23a98d1177 (patch)
treecee3fd2679fabd155a10449208dc1f86bde41ba3 /configure
parentprofstats: track dbus-system none (diff)
downloadfirejail-833db940c6fe8b991906014a92cc5e23a98d1177.tar.gz
firejail-833db940c6fe8b991906014a92cc5e23a98d1177.tar.zst
firejail-833db940c6fe8b991906014a92cc5e23a98d1177.zip
disable dbus proxy at compile time (default enabled) - part 1
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 17 insertions, 0 deletions
diff --git a/configure b/configure
index 5a80402b1..2ca71d3e2 100755
--- a/configure
+++ b/configure
@@ -643,6 +643,7 @@ HAVE_CHROOT
643HAVE_PRIVATE_HOME 643HAVE_PRIVATE_HOME
644HAVE_FIRETUNNEL 644HAVE_FIRETUNNEL
645HAVE_OVERLAYFS 645HAVE_OVERLAYFS
646HAVE_DBUSPROXY
646EXTRA_LDFLAGS 647EXTRA_LDFLAGS
647EXTRA_CFLAGS 648EXTRA_CFLAGS
648HAVE_APPARMOR 649HAVE_APPARMOR
@@ -705,6 +706,7 @@ ac_subst_files=''
705ac_user_opts=' 706ac_user_opts='
706enable_option_checking 707enable_option_checking
707enable_apparmor 708enable_apparmor
709enable_dbusproxy
708enable_overlayfs 710enable_overlayfs
709enable_firetunnel 711enable_firetunnel
710enable_private_home 712enable_private_home
@@ -1357,6 +1359,7 @@ Optional Features:
1357 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1359 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
1358 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1360 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
1359 --enable-apparmor enable apparmor 1361 --enable-apparmor enable apparmor
1362 --disable-dbusproxy disable dbus proxy
1360 --disable-overlayfs disable overlayfs 1363 --disable-overlayfs disable overlayfs
1361 --disable-firetunnel disable firetunnel 1364 --disable-firetunnel disable firetunnel
1362 --disable-private-home disable private home feature 1365 --disable-private-home disable private home feature
@@ -3494,6 +3497,19 @@ fi
3494 3497
3495 3498
3496 3499
3500HAVE_DBUSPROXY=""
3501# Check whether --enable-dbusproxy was given.
3502if test "${enable_dbusproxy+set}" = set; then :
3503 enableval=$enable_dbusproxy;
3504fi
3505
3506if test "x$enable_dbusproxy" != "xno"; then :
3507
3508 HAVE_DBUSPROXY="-DHAVE_DBUSPROXY"
3509
3510
3511fi
3512
3497HAVE_OVERLAYFS="" 3513HAVE_OVERLAYFS=""
3498# Check whether --enable-overlayfs was given. 3514# Check whether --enable-overlayfs was given.
3499if test "${enable_overlayfs+set}" = set; then : 3515if test "${enable_overlayfs+set}" = set; then :
@@ -5375,6 +5391,7 @@ echo " whitelisting: $HAVE_WHITELIST"
5375echo " private home support: $HAVE_PRIVATE_HOME" 5391echo " private home support: $HAVE_PRIVATE_HOME"
5376echo " file transfer support: $HAVE_FILE_TRANSFER" 5392echo " file transfer support: $HAVE_FILE_TRANSFER"
5377echo " overlayfs support: $HAVE_OVERLAYFS" 5393echo " overlayfs support: $HAVE_OVERLAYFS"
5394echo " DBUS proxy support: $HAVE_DBUSPROXY"
5378echo " firetunnel support: $HAVE_FIRETUNNEL" 5395echo " firetunnel support: $HAVE_FIRETUNNEL"
5379echo " busybox workaround: $BUSYBOX_WORKAROUND" 5396echo " busybox workaround: $BUSYBOX_WORKAROUND"
5380echo " Spectre compiler patch: $HAVE_SPECTRE" 5397echo " Spectre compiler patch: $HAVE_SPECTRE"