From: Evan Hunt Date: Tue, 10 Jun 2014 23:21:49 +0000 (-0700) Subject: [master] --enable-seccomp wasn't defaulting to no X-Git-Tag: v9.11.0a1~1557 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=206e697f24e47b8868bd68a5b6ef42f5f62e39d5;p=thirdparty%2Fbind9.git [master] --enable-seccomp wasn't defaulting to no --- diff --git a/configure b/configure index c14d3decd7a..6e290515d48 100755 --- 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 diff --git a/configure.in b/configure.in index 050943ecd6e..ade7a6dab16 100644 --- a/configure.in +++ b/configure.in @@ -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