Remove MSYSTEM environment variable check

This commit is contained in:
a.navrotskiy 2015-05-15 09:50:57 +03:00
parent 59c8a88839
commit 2a5bc20b78
1 changed files with 1 additions and 1 deletions

View File

@ -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")