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.

disable boringssl asm on win32

+8 -1
+8 -1
meson/deps/meson.build
··· 8 8 'INSTALL_ENABLED': '0', 9 9 }) 10 10 11 + if host_machine.system() == 'windows' 12 + boringssl_opts.add_cmake_defines({ 13 + 'OPENSSL_NO_ASM': '1', 14 + }) 15 + endif 16 + 11 17 if host_machine.system() == 'darwin' 12 18 deployment_flag = '-mmacosx-version-min=15.0' 13 19 boringssl_opts.add_cmake_defines({ ··· 37 43 userenv_dep = cc.find_library('userenv', required: true) 38 44 ws2_32_dep = cc.find_library('ws2_32', required: true) 39 45 iphlpapi_dep = cc.find_library('iphlpapi', required: true) 40 - win_deps = [secur32_dep, ntdll_dep, crypt32_dep, userenv_dep, ws2_32_dep, iphlpapi_dep] 46 + pathcch_dep = cc.find_library('pathcch', required: true) 47 + win_deps = [secur32_dep, ntdll_dep, crypt32_dep, userenv_dep, ws2_32_dep, iphlpapi_dep, pathcch_dep] 41 48 elif host_machine.system() == 'darwin' 42 49 security_dep = dependency('appleframeworks', modules: ['Security', 'CoreFoundation'], required: true) 43 50 win_deps = []