]> git.lizzy.rs Git - rust.git/commitdiff
rustbuild: Update the OpenSSL version to link
authorAlex Crichton <alex@alexcrichton.com>
Sat, 4 Nov 2017 15:05:46 +0000 (08:05 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sat, 4 Nov 2017 15:05:46 +0000 (08:05 -0700)
This updates the OpenSSL tarball download to reflect OpenSSL's newest release.

src/bootstrap/native.rs

index 19409ef779ecc940b61ddd068170fc4acbc7ec5e..fce6755aea920d6cf87de30ddc697b5b05acb7ae 100644 (file)
@@ -323,9 +323,9 @@ fn run(self, builder: &Builder) {
     }
 }
 
-const OPENSSL_VERS: &'static str = "1.0.2k";
+const OPENSSL_VERS: &'static str = "1.0.2m";
 const OPENSSL_SHA256: &'static str =
-    "6b3977c61f2aedf0f96367dcfb5c6e578cf37e7b8d913b4ecb6643c3cb88d8c0";
+    "8c6ff15ec6b319b50788f42c7abc2890c08ba5a1cdcd3810eb9092deada37b0f";
 
 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
 pub struct Openssl {