diff options
author | Jeremy Andrews <athenian200@outlook.com> | 2022-08-03 08:53:40 -0500 |
---|---|---|
committer | Jeremy Andrews <athenian200@outlook.com> | 2022-08-03 08:53:40 -0500 |
commit | 7a2f786e0cb89f1fa4a042dcde5dc92dce35bef7 (patch) | |
tree | 4a5e710da7ef96a1ea733d2d83711ab85718bb9d /old-configure.in | |
parent | a5696dc110ac8b7c3d0e868cba7dc44cbc40a854 (diff) | |
download | uxp-7a2f786e0cb89f1fa4a042dcde5dc92dce35bef7.tar.gz |
Issue #1956 - Account for multiple DLL files in newer CRT.
The wildcard seems to work well here for getting files included in the
final target.
Diffstat (limited to 'old-configure.in')
-rw-r--r-- | old-configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/old-configure.in b/old-configure.in index 6ed4fc1f3d..02c3b51865 100644 --- a/old-configure.in +++ b/old-configure.in @@ -182,8 +182,8 @@ case "$target" in 19*) _CC_SUITE=14 MSVS_VERSION=2015 - MSVC_C_RUNTIME_DLL=vcruntime140.dll - MSVC_CXX_RUNTIME_DLL=msvcp140.dll + MSVC_C_RUNTIME_DLL=vcruntime140*.dll + MSVC_CXX_RUNTIME_DLL=msvcp140*.dll MOZ_CHECK_HEADER(dia2.h, MSVC_HAS_DIA_SDK=1) if test -n "$MSVC_HAS_DIA_SDK"; then |