mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-30 09:14:59 +02:00
Fix check for OpenSSL 1.0.1 exactly.
Both INSTALL and configure.ac claim OpenSSL >= 1.0.1 is supported; fix compile-time check for 1.0.1 to match.
This commit is contained in:
parent
f2970868f8
commit
ce93472134
@ -32,7 +32,7 @@
|
||||
|
||||
int ssh_compatible_openssl(long, long);
|
||||
|
||||
#if (OPENSSL_VERSION_NUMBER <= 0x1000100fL)
|
||||
#if (OPENSSL_VERSION_NUMBER < 0x1000100fL)
|
||||
# error OpenSSL 1.0.1 or greater is required
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user