diff options
| author | Steven Fackler <[email protected]> | 2018-03-31 11:44:31 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-03-31 11:44:31 +0200 |
| commit | 8aaeb30393fe8617b54550754e9594201fb5cebb (patch) | |
| tree | 55ec0d3df14ca945dddc84839939c7bcc8af0f3f | |
| parent | Remove unneeded build keys (diff) | |
| parent | Fix systest against vcpkg-sourced OpenSSL (diff) | |
| download | rust-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.rs | 3 |
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") { |