Merge pull request #891 from sfackler/fix-vcpkg

Fix systest against vcpkg-sourced OpenSSL
This commit is contained in:
Steven Fackler 2018-03-31 11:44:31 +02:00 committed by GitHub
commit 8aaeb30393
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

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