From 54a0b2f7207e54edd0516fc8d07fa97a5885c2ed Mon Sep 17 00:00:00 2001 From: netblue30 Date: Sun, 25 Oct 2015 14:39:07 -0400 Subject: small fixes in config.ac --- README | 2 ++ configure | 6 +++--- configure.ac | 6 +++--- 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 Firejail Authors: netblue30 (netblue30@yahoo.com) +Duncan Overbruck (https://github.com/Duncaen) + - musl libc fix andrew160 (https://github.com/andrew160) - profile fixes Loï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: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --disable-seccomp Disable seccomp - --disable-chroot Disable chroot - --disable-bind Disable bind + --disable-seccomp disable seccomp + --disable-chroot disable chroot + --disable-bind disable bind --enable-fatal-warnings -W -Wall -Werror Some 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 HAVE_SECCOMP="" AC_ARG_ENABLE([seccomp], - AS_HELP_STRING([--disable-seccomp], [Disable seccomp])) + AS_HELP_STRING([--disable-seccomp], [disable seccomp])) AS_IF([test "x$enable_seccomp" != "xno"], [ HAVE_SECCOMP="-DHAVE_SECCOMP" AC_SUBST(HAVE_SECCOMP) @@ -19,7 +19,7 @@ AS_IF([test "x$enable_seccomp" != "xno"], [ HAVE_CHROOT="" AC_ARG_ENABLE([chroot], - AS_HELP_STRING([--disable-chroot], [Disable chroot])) + AS_HELP_STRING([--disable-chroot], [disable chroot])) AS_IF([test "x$enable_chroot" != "xno"], [ HAVE_CHROOT="-DHAVE_CHROOT" AC_SUBST(HAVE_CHROOT) @@ -27,7 +27,7 @@ AS_IF([test "x$enable_chroot" != "xno"], [ HAVE_BIND="" AC_ARG_ENABLE([bind], - AS_HELP_STRING([--disable-bind], [Disable bind])) + AS_HELP_STRING([--disable-bind], [disable bind])) AS_IF([test "x$enable_bind" != "xno"], [ HAVE_BIND="-DHAVE_BIND" AC_SUBST(HAVE_BIND) -- cgit v1.2.3-54-g00ecf