MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add windows dependencies for LMDB

+7 -1
+3 -1
meson/deps/meson.build
··· 22 22 ntdll_dep = cc.find_library('ntdll', required: true) 23 23 crypt32_dep = cc.find_library('crypt32', required: true) 24 24 userenv_dep = cc.find_library('userenv', required: true) 25 - win_deps = [secur32_dep, ntdll_dep, crypt32_dep, userenv_dep] 25 + ws2_32_dep = cc.find_library('ws2_32', required: true) 26 + iphlpapi_dep = cc.find_library('iphlpapi', required: true) 27 + win_deps = [secur32_dep, ntdll_dep, crypt32_dep, userenv_dep, ws2_32_dep, iphlpapi_dep] 26 28 elif host_machine.system() == 'darwin' 27 29 uuid_dep = dependency('uuid', required: true) 28 30 security_dep = dependency('appleframeworks', modules: ['Security', 'CoreFoundation'], required: true)
+2
src/modules/lmdb.c
··· 1 + #include <compat.h> // IWYU pragma: keep 2 + 1 3 #include "ant.h" 2 4 #include "arena.h" 3 5 #include "errors.h"
+2
src/modules/os.c
··· 11 11 #include <ws2tcpip.h> 12 12 #include <iphlpapi.h> 13 13 #include <lmcons.h> 14 + #ifdef _MSC_VER 14 15 #pragma comment(lib, "iphlpapi.lib") 15 16 #pragma comment(lib, "ws2_32.lib") 17 + #endif 16 18 #else 17 19 #include <sys/resource.h> 18 20 #include <sys/utsname.h>