aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-06-12 07:27:21 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-06-12 07:27:21 -0400
commitd28f1d7157c87076771498f062f5af7e932bd20f (patch)
tree60761b47463e090cebc5391163506f52cdde34ec /configure.ac
parentMerge pull request #564 from probonopd/patch-1 (diff)
downloadfirejail-d28f1d7157c87076771498f062f5af7e932bd20f.tar.gz
firejail-d28f1d7157c87076771498f062f5af7e932bd20f.tar.zst
firejail-d28f1d7157c87076771498f062f5af7e932bd20f.zip
support to disable enforcing firejail.config
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c9061f219..93e062518 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,6 +33,14 @@ AS_IF([test "x$enable_bind" != "xno"], [
33 AC_SUBST(HAVE_BIND) 33 AC_SUBST(HAVE_BIND)
34]) 34])
35 35
36HAVE_GLOBALCFG=""
37AC_ARG_ENABLE([globalcfg],
38 AS_HELP_STRING([--disable-globalcfg], [if the global config file firejail.cfg is not present, continue the program using defaults]))
39AS_IF([test "x$enable_globalcfg" != "xno"], [
40 HAVE_GLOBALCFG="-DHAVE_GLOBALCFG"
41 AC_SUBST(HAVE_GLOBALCFG)
42])
43
36HAVE_NETWORK="" 44HAVE_NETWORK=""
37AC_ARG_ENABLE([network], 45AC_ARG_ENABLE([network],
38 AS_HELP_STRING([--disable-network], [disable network])) 46 AS_HELP_STRING([--disable-network], [disable network]))
@@ -106,6 +114,7 @@ echo " prefix: $prefix"
106echo " sysconfdir: $sysconfdir" 114echo " sysconfdir: $sysconfdir"
107echo " seccomp: $HAVE_SECCOMP" 115echo " seccomp: $HAVE_SECCOMP"
108echo " <linux/seccomp.h>: $HAVE_SECCOMP_H" 116echo " <linux/seccomp.h>: $HAVE_SECCOMP_H"
117echo " global config: $HAVE_GLOBALCFG"
109echo " chroot: $HAVE_CHROOT" 118echo " chroot: $HAVE_CHROOT"
110echo " bind: $HAVE_BIND" 119echo " bind: $HAVE_BIND"
111echo " network: $HAVE_NETWORK" 120echo " network: $HAVE_NETWORK"