[openssh-commits] [openssh] 01/01: Allow --without-ssl-engine with --without-openssl
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Dec 15 15:12:14 AEDT 2015
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit b5fa0cd73555b991a543145603658d7088ec6b60
Author: Darren Tucker <dtucker at zip.com.au>
Date: Tue Dec 15 15:10:32 2015 +1100
Allow --without-ssl-engine with --without-openssl
Patch from Mike Frysinger via github.
---
configure.ac | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index 3ef3c42..b685432 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2309,10 +2309,10 @@ openssl_engine=no
AC_ARG_WITH([ssl-engine],
[ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
[
- if test "x$openssl" = "xno" ; then
- AC_MSG_ERROR([cannot use --with-ssl-engine when OpenSSL disabled])
- fi
if test "x$withval" != "xno" ; then
+ if test "x$openssl" = "xno" ; then
+ AC_MSG_ERROR([cannot use --with-ssl-engine when OpenSSL disabled])
+ fi
openssl_engine=yes
fi
]
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list