aboutsummaryrefslogtreecommitdiff
path: root/winbuild
diff options
context:
space:
mode:
authorGuenter Knauf <lists@gknw.net>2012-11-01 01:03:12 +0100
committerGuenter Knauf <lists@gknw.net>2012-11-01 01:03:12 +0100
commitc81eb7e226be6c8ead3865592f3f2487fab4caeb (patch)
treeb5d50076255598fb42945a4ca0e4e0ff8f314188 /winbuild
parent74fe1b95fb44053fdbef4b1eb9f550a3da332eda (diff)
Fixed MSVC libssh2 static build.
Since libssh2 supports now agent stuff it also depends on user32.lib. Posted to the list by Jan Ehrhardt.
Diffstat (limited to 'winbuild')
-rw-r--r--winbuild/MakefileBuild.vc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winbuild/MakefileBuild.vc b/winbuild/MakefileBuild.vc
index d04787918..c5450c114 100644
--- a/winbuild/MakefileBuild.vc
+++ b/winbuild/MakefileBuild.vc
@@ -132,7 +132,7 @@ SSH2_LIBS = libssh2.lib
USE_SSH2 = true
SSH2 = dll
!ELSEIF "$(WITH_SSH2)"=="static"
-SSH2_LIBS = libssh2_a_debug.lib
+SSH2_LIBS = libssh2_a.lib user32.lib
USE_SSH2 = true
SSH2 = static
!ENDIF