diff options
| author | Steven Fackler <[email protected]> | 2017-07-19 19:30:13 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2017-07-19 19:30:13 -0700 |
| commit | 43cacf00f5667ee973b6ca92fd527bfe726149aa (patch) | |
| tree | e23c8b6f0607a5678fa14a56493c85f89fc4e509 | |
| parent | Fix X509::clone impl (diff) | |
| download | rust-openssl-43cacf00f5667ee973b6ca92fd527bfe726149aa.tar.xz rust-openssl-43cacf00f5667ee973b6ca92fd527bfe726149aa.zip | |
Forbid LibreSSL 2.5.6+
| -rw-r--r-- | openssl-sys/build.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openssl-sys/build.rs b/openssl-sys/build.rs index 2f1877b4..317b8a6a 100644 --- a/openssl-sys/build.rs +++ b/openssl-sys/build.rs @@ -264,6 +264,8 @@ fn validate_headers(include_dirs: &[PathBuf]) -> Version { RUST_LIBRESSL_NEW #elif LIBRESSL_VERSION_NUMBER >= 0x20600000 RUST_LIBRESSL_260 +#elif LIBRESSL_VERSION_NUMBER >= 0x20506000 +RUST_LIBRESSL_NEW #elif LIBRESSL_VERSION_NUMBER >= 0x20505000 RUST_LIBRESSL_255 #elif LIBRESSL_VERSION_NUMBER >= 0x20504000 |