aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
diff options
context:
space:
mode:
authora.navrotskiy <[email protected]>2015-05-15 09:50:57 +0300
committera.navrotskiy <[email protected]>2015-05-15 09:50:57 +0300
commit2a5bc20b78af4308be819a7c9d4e2de2e30f046d (patch)
tree9330b21e3880fa0f517b0afb24fa73ad73cff133 /openssl-sys
parentAdd ability to redefine library list via OPENSSL_LIBS environment variable. (diff)
downloadrust-openssl-2a5bc20b78af4308be819a7c9d4e2de2e30f046d.tar.xz
rust-openssl-2a5bc20b78af4308be819a7c9d4e2de2e30f046d.zip
Remove MSYSTEM environment variable check
Diffstat (limited to 'openssl-sys')
-rw-r--r--openssl-sys/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl-sys/build.rs b/openssl-sys/build.rs
index 89bd52f8..51d78ffc 100644
--- a/openssl-sys/build.rs
+++ b/openssl-sys/build.rs
@@ -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")