aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-11-17 00:01:21 -0500
committerSteven Fackler <[email protected]>2015-11-17 00:01:21 -0500
commitb82b93b813660b003f88bc095daae3942e910119 (patch)
tree84146daa2392358bd30099a251c9d951c423e63a
parentRemove deprecated X509 methods (diff)
parentExplicitly depend on gdi32 and user32 on Windows (diff)
downloadrust-openssl-b82b93b813660b003f88bc095daae3942e910119.tar.xz
rust-openssl-b82b93b813660b003f88bc095daae3942e910119.zip
Merge pull request #297 from retep998/patch-1
Explicitly depend on gdi32 and user32 on Windows
-rw-r--r--openssl-sys/Cargo.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml
index 6630b1ce..ebcddfc6 100644
--- a/openssl-sys/Cargo.toml
+++ b/openssl-sys/Cargo.toml
@@ -39,3 +39,15 @@ libressl-pnacl-sys = "2.1.0"
libressl-pnacl-sys = "2.1.0"
[target.arm-unknown-nacl.dependencies]
libressl-pnacl-sys = "2.1.0"
+[target.i686-pc-windows-gnu]
+user32-sys = "*"
+gdi32-sys = "*"
+[target.x86_64-pc-windows-gnu]
+user32-sys = "*"
+gdi32-sys = "*"
+[target.i686-pc-windows-msvc]
+user32-sys = "*"
+gdi32-sys = "*"
+[target.x86_64-pc-windows-msvc]
+user32-sys = "*"
+gdi32-sys = "*"