diff options
| author | bombless <[email protected]> | 2015-02-13 06:22:48 +0800 |
|---|---|---|
| committer | bombless <[email protected]> | 2015-02-13 06:22:48 +0800 |
| commit | 24b4df49d0f36b1addf74956d5be31f03da411d5 (patch) | |
| tree | 0149efc67962b355ebceb36e980826cbe5fa35a2 | |
| parent | Fix Windows build (diff) | |
| download | rust-openssl-24b4df49d0f36b1addf74956d5be31f03da411d5.tar.xz rust-openssl-24b4df49d0f36b1addf74956d5be31f03da411d5.zip | |
Make it safer
| -rw-r--r-- | openssl-sys/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl-sys/build.rs b/openssl-sys/build.rs index 6a3d9a13..50972054 100644 --- a/openssl-sys/build.rs +++ b/openssl-sys/build.rs @@ -18,7 +18,7 @@ fn main() { return; } - if target.contains("win32") || target.contains("win64") || target.contains("i686-pc-windows-gnu") || target.contains("x86_64-pc-windows-gnu") { + if target.contains("win32") || target.contains("win64") || target.contains("windows") { println!("cargo:rustc-flags=-l crypto -l ssl -l gdi32 -l wsock32"); // going to assume the user has a new version of openssl build_old_openssl_shim(false); |