mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
moz.configure: add fix for VS2017 x64 ATLMFC lib path detection
This commit is contained in:
parent
f191eae652
commit
661754041c
1 changed files with 4 additions and 2 deletions
|
|
@ -334,8 +334,10 @@ def lib_path(target, vc_path, windows_sdk_dir, ucrt_sdk_dir, dia_sdk_dir):
|
||||||
|
|
||||||
atlmfc_dir = os.path.join(vc_path, 'atlmfc', 'lib', *vc_target)
|
atlmfc_dir = os.path.join(vc_path, 'atlmfc', 'lib', *vc_target)
|
||||||
if not os.path.isdir(atlmfc_dir):
|
if not os.path.isdir(atlmfc_dir):
|
||||||
die('Cannot find the ATL/MFC libraries in the Visual C++ directory (%s). '
|
atlmfc_dir = atlmfc_dir.replace('amd64','x64')
|
||||||
'Please install them.' % vc_path)
|
if not os.path.isdir(atlmfc_dir):
|
||||||
|
die('Cannot find the ATL/MFC libraries in the Visual C++ directory (%s). '
|
||||||
|
'Please install them.' % vc_path)
|
||||||
|
|
||||||
|
|
||||||
libs = []
|
libs = []
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue