From dae66d4fc441a6b97e2ebd84ef10361689a585b6 Mon Sep 17 00:00:00 2001 From: Kittywhiskers Van Gogh <63189531+kittywhiskers@users.noreply.github.com> Date: Mon, 2 Jan 2023 12:43:49 +0530 Subject: [PATCH] build: add mimalloc's Win32 API dependencies --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 95f837b548..67c69c7fa9 100644 --- a/configure.ac +++ b/configure.ac @@ -647,6 +647,8 @@ case $host in AC_CHECK_LIB([ws2_32], [WSAStartup],, AC_MSG_ERROR(libws2_32 missing)) AC_CHECK_LIB([shlwapi], [PathRemoveFileSpecW],, AC_MSG_ERROR(libshlwapi missing)) AC_CHECK_LIB([iphlpapi], [GetAdaptersAddresses],, AC_MSG_ERROR(libiphlpapi missing)) + AC_CHECK_LIB([psapi], [GetProcessMemoryInfo],, [AC_MSG_ERROR([libpsapi missing])]) + AC_CHECK_LIB([bcrypt], [main],, [AC_MSG_ERROR([libbcrypt missing])]) dnl -static is interpreted by libtool, where it has a different meaning. dnl In libtool-speak, it's -all-static.