diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 9 |
2 files changed, 9 insertions, 5 deletions
@@ -1,3 +1,8 @@ | |||
1 | 20100207 | ||
2 | - (djm) [configure.ac] Don't probe seccomp capability of running kernel | ||
3 | at configure time; the seccomp sandbox will fall back to rlimit at | ||
4 | runtime anyway. Patch from plautrba AT redhat.com in bz#2011 | ||
5 | |||
1 | 20130120 | 6 | 20130120 |
2 | - (djm) [cipher-aes.c cipher-ctr.c openbsd-compat/openssl-compat.h] | 7 | - (djm) [cipher-aes.c cipher-ctr.c openbsd-compat/openssl-compat.h] |
3 | Move prototypes for replacement ciphers to openssl-compat.h; fix EVP | 8 | Move prototypes for replacement ciphers to openssl-compat.h; fix EVP |
diff --git a/configure.ac b/configure.ac index 36761233c..f61106441 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.500 2013/01/09 05:42:47 djm Exp $ | 1 | # $Id: configure.ac,v 1.501 2013/02/06 23:11:05 djm Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -15,7 +15,7 @@ | |||
15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | 16 | ||
17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) | 17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) |
18 | AC_REVISION($Revision: 1.500 $) | 18 | AC_REVISION($Revision: 1.501 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | AC_LANG([C]) | 20 | AC_LANG([C]) |
21 | 21 | ||
@@ -128,7 +128,7 @@ AC_CHECK_DECL([SECCOMP_MODE_FILTER], [have_seccomp_filter=1], , [ | |||
128 | fi | 128 | fi |
129 | if test "x$have_seccomp_filter" = "x1" ; then | 129 | if test "x$have_seccomp_filter" = "x1" ; then |
130 | AC_MSG_CHECKING([kernel for seccomp_filter support]) | 130 | AC_MSG_CHECKING([kernel for seccomp_filter support]) |
131 | AC_RUN_IFELSE([AC_LANG_PROGRAM([[ | 131 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[ |
132 | #include <errno.h> | 132 | #include <errno.h> |
133 | #include <linux/seccomp.h> | 133 | #include <linux/seccomp.h> |
134 | #include <stdlib.h> | 134 | #include <stdlib.h> |
@@ -141,8 +141,7 @@ AC_RUN_IFELSE([AC_LANG_PROGRAM([[ | |||
141 | AC_MSG_RESULT([no]) | 141 | AC_MSG_RESULT([no]) |
142 | # Disable seccomp filter as a target | 142 | # Disable seccomp filter as a target |
143 | have_seccomp_filter=0 | 143 | have_seccomp_filter=0 |
144 | ], | 144 | ] |
145 | [ AC_MSG_RESULT([cross-compiling, assuming yes]) ] | ||
146 | ) | 145 | ) |
147 | fi | 146 | fi |
148 | 147 | ||