Commit 2a5bc20b authored by a.navrotskiy's avatar a.navrotskiy
Browse files

Remove MSYSTEM environment variable check

parent 59c8a888
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ fn main() {
    let libs_env = env::var("OPENSSL_LIBS").ok();
    let libs = match libs_env {
        Some(ref v) => v.split(":").collect(),
        None => if target.contains("windows") && env::var_os("MSYSTEM").is_none() {
        None => if target.contains("windows") {
            vec!("eay32", "ssl32")
        } else {
            vec!("crypto", "ssl")