aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-08-20 07:54:20 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-08-20 07:54:20 -0400
commitccf7230e0b4e74d21ba9030793b4486250d30507 (patch)
treef260e93febf31c5183dbd1b8e991dbad5e4f7016 /configure
parentsmall fixes for command args (diff)
downloadfirejail-ccf7230e0b4e74d21ba9030793b4486250d30507.tar.gz
firejail-ccf7230e0b4e74d21ba9030793b4486250d30507.tar.zst
firejail-ccf7230e0b4e74d21ba9030793b4486250d30507.zip
compile time config option for overlayfs
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 17 insertions, 0 deletions
diff --git a/configure b/configure
index 29792969c..5505b01c2 100755
--- a/configure
+++ b/configure
@@ -636,6 +636,7 @@ HAVE_GLOBALCFG
636HAVE_BIND 636HAVE_BIND
637HAVE_CHROOT 637HAVE_CHROOT
638HAVE_SECCOMP 638HAVE_SECCOMP
639HAVE_OVERLAYFS
639EXTRA_LDFLAGS 640EXTRA_LDFLAGS
640EGREP 641EGREP
641GREP 642GREP
@@ -694,6 +695,7 @@ ac_subst_files=''
694ac_user_opts=' 695ac_user_opts='
695enable_option_checking 696enable_option_checking
696enable_apparmor 697enable_apparmor
698enable_overlayfs
697enable_seccomp 699enable_seccomp
698enable_chroot 700enable_chroot
699enable_bind 701enable_bind
@@ -1325,6 +1327,7 @@ Optional Features:
1325 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1327 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
1326 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1328 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
1327 --enable-apparmor enable apparmor 1329 --enable-apparmor enable apparmor
1330 --disable-overlayfs disable overlayfs
1328 --disable-seccomp disable seccomp 1331 --disable-seccomp disable seccomp
1329 --disable-chroot disable chroot 1332 --disable-chroot disable chroot
1330 --disable-bind disable bind 1333 --disable-bind disable bind
@@ -3511,6 +3514,19 @@ if test "x$enable_apparmor" = "xyes"; then :
3511fi 3514fi
3512 3515
3513 3516
3517HAVE_OVERLAYFS=""
3518# Check whether --enable-overlayfs was given.
3519if test "${enable_overlayfs+set}" = set; then :
3520 enableval=$enable_overlayfs;
3521fi
3522
3523if test "x$enable_overlayfs" != "xno"; then :
3524
3525 HAVE_OVERLAYFS="-DHAVE_OVERLAYFS"
3526
3527
3528fi
3529
3514HAVE_SECCOMP="" 3530HAVE_SECCOMP=""
3515# Check whether --enable-seccomp was given. 3531# Check whether --enable-seccomp was given.
3516if test "${enable_seccomp+set}" = set; then : 3532if test "${enable_seccomp+set}" = set; then :
@@ -4922,6 +4938,7 @@ echo " user namespace: $HAVE_USERNS"
4922echo " X11 sandboxing support: $HAVE_X11" 4938echo " X11 sandboxing support: $HAVE_X11"
4923echo " whitelisting: $HAVE_WHITELIST" 4939echo " whitelisting: $HAVE_WHITELIST"
4924echo " file transfer support: $HAVE_FILE_TRANSFER" 4940echo " file transfer support: $HAVE_FILE_TRANSFER"
4941echo " overlayfs support: $HAVE_OVERLAYFS"
4925echo " fatal warnings: $HAVE_FATAL_WARNINGS" 4942echo " fatal warnings: $HAVE_FATAL_WARNINGS"
4926echo " busybox workaround: $BUSYBOX_WORKAROUND" 4943echo " busybox workaround: $BUSYBOX_WORKAROUND"
4927printf " uid_min: "; grep UID_MIN uids.h 4944printf " uid_min: "; grep UID_MIN uids.h