win32, msvc: fix missing linking against Bcrypt.lib

Fixes this link error:

dict.obj : error LNK2019: unresolved external symbol BCryptGenRandom referenced in function xmlInitRandom

Commit 2e9e758d1ecb52b73a43db79d326c18d7d94c8d7 (dict: Get random seed
from system PRNG, 2023-12-24) updated cmake, but not nmake, correct
this.
This commit is contained in:
Miklos Vajna 2024-06-14 22:29:29 +02:00 committed by Nick Wellnhofer
parent c04d9b1b87
commit cb655b4e7d

View File

@ -81,6 +81,7 @@ LIBS = $(LIBS) pthreadVC.lib
!if "$(WITH_MODULES)" == "1"
LIBS = $(LIBS) kernel32.lib
!endif
LIBS = $(LIBS) Bcrypt.lib
# The archiver and its options.
AR = lib.exe