summaryrefslogtreecommitdiff
path: root/systest
diff options
context:
space:
mode:
authorChristopher Vittal <christopher.vittal@gmail.com>2017-10-03 23:53:50 -0400
committerChristopher Vittal <christopher.vittal@gmail.com>2017-10-03 23:59:33 -0400
commite0efd1d438fbf426a7e1006e4983b0f352c630f6 (patch)
tree626c6643d3b39e115cc5f43b330c688daf86e18a /systest
parent7159215e45b8ddd7d423f9fd2b8c37a4cbb90563 (diff)
downloadrust-openssl-e0efd1d438fbf426a7e1006e4983b0f352c630f6.zip
Add support for LibreSSL 2.6.2
Diffstat (limited to 'systest')
-rw-r--r--systest/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/systest/build.rs b/systest/build.rs
index 45e335c0..7418cca0 100644
--- a/systest/build.rs
+++ b/systest/build.rs
@@ -42,7 +42,7 @@ fn main() {
}
let has_cms_h = if let Ok(version) = env::var("DEP_OPENSSL_LIBRESSL_VERSION") {
- version != "261"
+ version != "261" && version != "262"
} else {
true
};