2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

[master] --enable-seccomp wasn't defaulting to no

This commit is contained in:
Evan Hunt
2014-06-10 16:21:49 -07:00
parent 7c9d11b654
commit 206e697f24
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@@ -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

View 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