From 833db940c6fe8b991906014a92cc5e23a98d1177 Mon Sep 17 00:00:00 2001 From: netblue30 Date: Wed, 9 Sep 2020 08:30:24 -0400 Subject: disable dbus proxy at compile time (default enabled) - part 1 --- configure | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'configure') diff --git a/configure b/configure index 5a80402b1..2ca71d3e2 100755 --- a/configure +++ b/configure @@ -643,6 +643,7 @@ HAVE_CHROOT HAVE_PRIVATE_HOME HAVE_FIRETUNNEL HAVE_OVERLAYFS +HAVE_DBUSPROXY EXTRA_LDFLAGS EXTRA_CFLAGS HAVE_APPARMOR @@ -705,6 +706,7 @@ ac_subst_files='' ac_user_opts=' enable_option_checking enable_apparmor +enable_dbusproxy enable_overlayfs enable_firetunnel enable_private_home @@ -1357,6 +1359,7 @@ Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-apparmor enable apparmor + --disable-dbusproxy disable dbus proxy --disable-overlayfs disable overlayfs --disable-firetunnel disable firetunnel --disable-private-home disable private home feature @@ -3494,6 +3497,19 @@ fi +HAVE_DBUSPROXY="" +# Check whether --enable-dbusproxy was given. +if test "${enable_dbusproxy+set}" = set; then : + enableval=$enable_dbusproxy; +fi + +if test "x$enable_dbusproxy" != "xno"; then : + + HAVE_DBUSPROXY="-DHAVE_DBUSPROXY" + + +fi + HAVE_OVERLAYFS="" # Check whether --enable-overlayfs was given. if test "${enable_overlayfs+set}" = set; then : @@ -5375,6 +5391,7 @@ echo " whitelisting: $HAVE_WHITELIST" echo " private home support: $HAVE_PRIVATE_HOME" echo " file transfer support: $HAVE_FILE_TRANSFER" echo " overlayfs support: $HAVE_OVERLAYFS" +echo " DBUS proxy support: $HAVE_DBUSPROXY" echo " firetunnel support: $HAVE_FIRETUNNEL" echo " busybox workaround: $BUSYBOX_WORKAROUND" echo " Spectre compiler patch: $HAVE_SPECTRE" -- cgit v1.2.3-54-g00ecf