]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[master] --enable-seccomp wasn't defaulting to no
authorEvan Hunt <each@isc.org>
Tue, 10 Jun 2014 23:21:49 +0000 (16:21 -0700)
committerEvan Hunt <each@isc.org>
Tue, 10 Jun 2014 23:21:49 +0000 (16:21 -0700)
configure
configure.in

index c14d3decd7a73933764c12cf98b113e69569242d..6e290515d48270811e7026669050c71a41ba152f 100755 (executable)
--- a/configure
+++ b/configure
@@ -11425,7 +11425,7 @@ if test "${enable_seccomp+set}" = set; then :
 fi
 
 case "$enable_seccomp" in
-       yes|'')
+       yes)
        case $host_os in
        linux*)
                ;;
@@ -11551,7 +11551,7 @@ fi
 
        fi
                ;;
-       no)
+       *)
                ;;
 esac
 
index 050943ecd6ef489a9cccee8d28e6c134d7a0c510..ade7a6dab169871110462ea7872d39ad149a1906 100644 (file)
@@ -94,7 +94,7 @@ esac
 AC_ARG_ENABLE(seccomp,
        AS_HELP_STRING([--enable-seccomp],[enable support for libseccomp sysstem call filtering [default=no]]))
 case "$enable_seccomp" in
-       yes|'')
+       yes)
        case $host_os in
        linux*)
                ;;
@@ -148,7 +148,7 @@ case "$enable_seccomp" in
        )
        fi
                ;;
-       no)
+       *)
                ;;
 esac