aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2018-03-31 11:44:31 +0200
committerGitHub <[email protected]>2018-03-31 11:44:31 +0200
commit8aaeb30393fe8617b54550754e9594201fb5cebb (patch)
tree55ec0d3df14ca945dddc84839939c7bcc8af0f3f
parentRemove unneeded build keys (diff)
parentFix systest against vcpkg-sourced OpenSSL (diff)
downloadrust-openssl-8aaeb30393fe8617b54550754e9594201fb5cebb.tar.xz
rust-openssl-8aaeb30393fe8617b54550754e9594201fb5cebb.zip
Merge pull request #891 from sfackler/fix-vcpkg
Fix systest against vcpkg-sourced OpenSSL
-rw-r--r--systest/build.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/systest/build.rs b/systest/build.rs
index af74ce2b..98e9ffb3 100644
--- a/systest/build.rs
+++ b/systest/build.rs
@@ -21,6 +21,9 @@ fn main() {
if target.contains("msvc") {
cfg.flag("/wd4090");
}
+
+ // https://github.com/sfackler/rust-openssl/issues/889
+ cfg.define("WIN32_LEAN_AND_MEAN", None);
}
if let Ok(_) = env::var("DEP_OPENSSL_LIBRESSL") {