mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
Issue #unknown, update mozglue delay-load DLL list.
This commit is contained in:
parent
5ad78a48db
commit
1644733848
1 changed files with 7 additions and 1 deletions
|
|
@ -18,7 +18,13 @@ if CONFIG['MOZ_ASAN']:
|
||||||
if CONFIG['OS_TARGET'] == 'WINNT':
|
if CONFIG['OS_TARGET'] == 'WINNT':
|
||||||
DEFFILE = 'mozglue.def'
|
DEFFILE = 'mozglue.def'
|
||||||
# We'll break the DLL blocklist if we immediately load user32.dll
|
# We'll break the DLL blocklist if we immediately load user32.dll
|
||||||
DELAYLOAD_DLLS += ['user32.dll']
|
# For the same reason, we delayload these other DLLs to avoid eager
|
||||||
|
# dependencies on user32.dll.
|
||||||
|
DELAYLOAD_DLLS += [
|
||||||
|
'dbghelp.dll',
|
||||||
|
'user32.dll',
|
||||||
|
'version.dll',
|
||||||
|
]
|
||||||
|
|
||||||
if not CONFIG['JS_STANDALONE']:
|
if not CONFIG['JS_STANDALONE']:
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue