aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-08-21 08:16:06 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2015-08-21 08:16:06 -0400
commit9d91a26a154f5b345b46aff539303fae86bd9415 (patch)
treeabe9237133435c6ba96f3d17354d349a54e462c1 /configure
parentMerge pull request #38 from pmillerchip/shell-none-args (diff)
downloadfirejail-9d91a26a154f5b345b46aff539303fae86bd9415.tar.gz
firejail-9d91a26a154f5b345b46aff539303fae86bd9415.tar.zst
firejail-9d91a26a154f5b345b46aff539303fae86bd9415.zip
added --enable-fatal-warnings
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 16 insertions, 0 deletions
diff --git a/configure b/configure
index fb8051518..1b8f6728c 100755
--- a/configure
+++ b/configure
@@ -628,6 +628,7 @@ HAVE_SECCOMP_H
628EGREP 628EGREP
629GREP 629GREP
630CPP 630CPP
631HAVE_FATAL_WARNINGS
631HAVE_BIND 632HAVE_BIND
632HAVE_CHROOT 633HAVE_CHROOT
633HAVE_SECCOMP 634HAVE_SECCOMP
@@ -686,6 +687,7 @@ enable_option_checking
686enable_seccomp 687enable_seccomp
687enable_chroot 688enable_chroot
688enable_bind 689enable_bind
690enable_fatal_warnings
689' 691'
690 ac_precious_vars='build_alias 692 ac_precious_vars='build_alias
691host_alias 693host_alias
@@ -1308,6 +1310,7 @@ Optional Features:
1308 --disable-seccomp Disable seccomp 1310 --disable-seccomp Disable seccomp
1309 --disable-chroot Disable chroot 1311 --disable-chroot Disable chroot
1310 --disable-bind Disable bind 1312 --disable-bind Disable bind
1313 --enable-fatal-warnings -W -Wall -Werror
1311 1314
1312Some influential environment variables: 1315Some influential environment variables:
1313 CC C compiler command 1316 CC C compiler command
@@ -3084,6 +3087,18 @@ if test "x$enable_bind" != "xno"; then :
3084 3087
3085fi 3088fi
3086 3089
3090HAVE_FATAL_WARNINGS=""
3091# Check whether --enable-fatal_warnings was given.
3092if test "${enable_fatal_warnings+set}" = set; then :
3093 enableval=$enable_fatal_warnings;
3094fi
3095
3096if test "x$enable_fatal_warnings" = "xyes"; then :
3097
3098 HAVE_FATAL_WARNINGS="-W -Wall -Werror"
3099
3100
3101fi
3087 3102
3088# checking pthread library 3103# checking pthread library
3089 3104
@@ -4720,4 +4735,5 @@ echo " seccomp: $HAVE_SECCOMP"
4720echo " <linux/seccomp.h>: $HAVE_SECCOMP_H" 4735echo " <linux/seccomp.h>: $HAVE_SECCOMP_H"
4721echo " chroot: $HAVE_CHROOT" 4736echo " chroot: $HAVE_CHROOT"
4722echo " bind: $HAVE_BIND" 4737echo " bind: $HAVE_BIND"
4738echo " fatal warnings: $HAVE_FATAL_WARNINGS"
4723echo 4739echo