aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-09-04 13:52:16 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-09-04 13:52:16 -0400
commit6aad9ad431f749003b4eab7b91cfdd0f218852a2 (patch)
tree9b7d89269ff05af0a6259668a8e8c5a456ac7666 /configure
parentfixes (diff)
downloadfirejail-6aad9ad431f749003b4eab7b91cfdd0f218852a2.tar.gz
firejail-6aad9ad431f749003b4eab7b91cfdd0f218852a2.tar.zst
firejail-6aad9ad431f749003b4eab7b91cfdd0f218852a2.zip
bringing back --private-home
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 17 insertions, 0 deletions
diff --git a/configure b/configure
index 3f9d0fc42..0b05d42e5 100755
--- a/configure
+++ b/configure
@@ -636,6 +636,7 @@ HAVE_GLOBALCFG
636HAVE_BIND 636HAVE_BIND
637HAVE_CHROOT 637HAVE_CHROOT
638HAVE_SECCOMP 638HAVE_SECCOMP
639HAVE_PRIVATE_HOME
639HAVE_OVERLAYFS 640HAVE_OVERLAYFS
640EXTRA_LDFLAGS 641EXTRA_LDFLAGS
641EGREP 642EGREP
@@ -696,6 +697,7 @@ ac_user_opts='
696enable_option_checking 697enable_option_checking
697enable_apparmor 698enable_apparmor
698enable_overlayfs 699enable_overlayfs
700enable_private_home
699enable_seccomp 701enable_seccomp
700enable_chroot 702enable_chroot
701enable_bind 703enable_bind
@@ -1328,6 +1330,7 @@ Optional Features:
1328 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1330 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
1329 --enable-apparmor enable apparmor 1331 --enable-apparmor enable apparmor
1330 --disable-overlayfs disable overlayfs 1332 --disable-overlayfs disable overlayfs
1333 --disable-private-home disable private home feature
1331 --disable-seccomp disable seccomp 1334 --disable-seccomp disable seccomp
1332 --disable-chroot disable chroot 1335 --disable-chroot disable chroot
1333 --disable-bind disable bind 1336 --disable-bind disable bind
@@ -3527,6 +3530,19 @@ if test "x$enable_overlayfs" != "xno"; then :
3527 3530
3528fi 3531fi
3529 3532
3533HAVE_PRIVATEHOME=""
3534# Check whether --enable-private-home was given.
3535if test "${enable_private_home+set}" = set; then :
3536 enableval=$enable_private_home;
3537fi
3538
3539if test "x$enable_private_home" != "xno"; then :
3540
3541 HAVE_PRIVATE_HOME="-DHAVE_PRIVATE_HOME"
3542
3543
3544fi
3545
3530HAVE_SECCOMP="" 3546HAVE_SECCOMP=""
3531# Check whether --enable-seccomp was given. 3547# Check whether --enable-seccomp was given.
3532if test "${enable_seccomp+set}" = set; then : 3548if test "${enable_seccomp+set}" = set; then :
@@ -4937,6 +4953,7 @@ echo " network: $HAVE_NETWORK"
4937echo " user namespace: $HAVE_USERNS" 4953echo " user namespace: $HAVE_USERNS"
4938echo " X11 sandboxing support: $HAVE_X11" 4954echo " X11 sandboxing support: $HAVE_X11"
4939echo " whitelisting: $HAVE_WHITELIST" 4955echo " whitelisting: $HAVE_WHITELIST"
4956echo " private home support: $HAVE_PRIVATE_HOME"
4940echo " file transfer support: $HAVE_FILE_TRANSFER" 4957echo " file transfer support: $HAVE_FILE_TRANSFER"
4941echo " overlayfs support: $HAVE_OVERLAYFS" 4958echo " overlayfs support: $HAVE_OVERLAYFS"
4942echo " fatal warnings: $HAVE_FATAL_WARNINGS" 4959echo " fatal warnings: $HAVE_FATAL_WARNINGS"