From bcb6cfb13d423a208f9a9358863ca227c35be67f Mon Sep 17 00:00:00 2001 From: Simon Butcher Date: Wed, 14 Mar 2018 17:45:45 +0000 Subject: [PATCH] Fix the tests build with mingw for the new Win32 APIs Add missing library dependency of bcrypt to the tests Makefile Signed-off-by: Simon Butcher --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 60ab27ec7a..2249a55df6 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -49,7 +49,7 @@ endif ifdef WINDOWS_BUILD DLEXT=dll EXEXT=.exe -LOCAL_LDFLAGS += -lws2_32 +LOCAL_LDFLAGS += -lws2_32 -lbcrypt ifdef SHARED SHARED_SUFFIX=.$(DLEXT) endif