Skip to content

Commit

Permalink
Fix for building programs with mingw
Browse files Browse the repository at this point in the history
mingw build files were missing the dependency on the bcrypt library

Signed-off-by: Simon Butcher <[email protected]>
  • Loading branch information
simonbutcher authored and minosgalanakis committed Sep 25, 2023
1 parent 33425de commit 1c0c5d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ endif
ifdef WINDOWS_BUILD
DLEXT=dll
EXEXT=.exe
LOCAL_LDFLAGS += -lws2_32
LOCAL_LDFLAGS += -lws2_32 -lbcrypt
ifdef SHARED
SHARED_SUFFIX=.$(DLEXT)
endif
Expand Down

0 comments on commit 1c0c5d2

Please sign in to comment.