aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README2
-rwxr-xr-xconfigure6
-rw-r--r--configure.ac6
3 files changed, 8 insertions, 6 deletions
diff --git a/README b/README
index 4fb215767..1b97ff9cb 100644
--- a/README
+++ b/README
@@ -18,6 +18,8 @@ License: GPL v2
18Firejail Authors: 18Firejail Authors:
19 19
20netblue30 (netblue30@yahoo.com) 20netblue30 (netblue30@yahoo.com)
21Duncan Overbruck (https://github.com/Duncaen)
22 - musl libc fix
21andrew160 (https://github.com/andrew160) 23andrew160 (https://github.com/andrew160)
22 - profile fixes 24 - profile fixes
23Loïc Damien (https://github.com/dzamlo) 25Loïc Damien (https://github.com/dzamlo)
diff --git a/configure b/configure
index 9625cdb61..e03bb5268 100755
--- a/configure
+++ b/configure
@@ -1307,9 +1307,9 @@ Optional Features:
1307 --disable-option-checking ignore unrecognized --enable/--with options 1307 --disable-option-checking ignore unrecognized --enable/--with options
1308 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1308 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
1309 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1309 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
1310 --disable-seccomp Disable seccomp 1310 --disable-seccomp disable seccomp
1311 --disable-chroot Disable chroot 1311 --disable-chroot disable chroot
1312 --disable-bind Disable bind 1312 --disable-bind disable bind
1313 --enable-fatal-warnings -W -Wall -Werror 1313 --enable-fatal-warnings -W -Wall -Werror
1314 1314
1315Some influential environment variables: 1315Some influential environment variables:
diff --git a/configure.ac b/configure.ac
index b2fa22fd7..ce5eb6945 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,7 +11,7 @@ AC_PROG_RANLIB
11 11
12HAVE_SECCOMP="" 12HAVE_SECCOMP=""
13AC_ARG_ENABLE([seccomp], 13AC_ARG_ENABLE([seccomp],
14 AS_HELP_STRING([--disable-seccomp], [Disable seccomp])) 14 AS_HELP_STRING([--disable-seccomp], [disable seccomp]))
15AS_IF([test "x$enable_seccomp" != "xno"], [ 15AS_IF([test "x$enable_seccomp" != "xno"], [
16 HAVE_SECCOMP="-DHAVE_SECCOMP" 16 HAVE_SECCOMP="-DHAVE_SECCOMP"
17 AC_SUBST(HAVE_SECCOMP) 17 AC_SUBST(HAVE_SECCOMP)
@@ -19,7 +19,7 @@ AS_IF([test "x$enable_seccomp" != "xno"], [
19 19
20HAVE_CHROOT="" 20HAVE_CHROOT=""
21AC_ARG_ENABLE([chroot], 21AC_ARG_ENABLE([chroot],
22 AS_HELP_STRING([--disable-chroot], [Disable chroot])) 22 AS_HELP_STRING([--disable-chroot], [disable chroot]))
23AS_IF([test "x$enable_chroot" != "xno"], [ 23AS_IF([test "x$enable_chroot" != "xno"], [
24 HAVE_CHROOT="-DHAVE_CHROOT" 24 HAVE_CHROOT="-DHAVE_CHROOT"
25 AC_SUBST(HAVE_CHROOT) 25 AC_SUBST(HAVE_CHROOT)
@@ -27,7 +27,7 @@ AS_IF([test "x$enable_chroot" != "xno"], [
27 27
28HAVE_BIND="" 28HAVE_BIND=""
29AC_ARG_ENABLE([bind], 29AC_ARG_ENABLE([bind],
30 AS_HELP_STRING([--disable-bind], [Disable bind])) 30 AS_HELP_STRING([--disable-bind], [disable bind]))
31AS_IF([test "x$enable_bind" != "xno"], [ 31AS_IF([test "x$enable_bind" != "xno"], [
32 HAVE_BIND="-DHAVE_BIND" 32 HAVE_BIND="-DHAVE_BIND"
33 AC_SUBST(HAVE_BIND) 33 AC_SUBST(HAVE_BIND)