summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-08-31 20:48:33 +0200
committerAnatol Belski <ab@php.net>2017-08-31 20:54:11 +0200
commit6ec494016b296c4dcc184f08ff78ad85178ccd1d (patch)
treeb0f264efa0ba4937defa195e7c2ac7f281a8c430 /win32
parent2e77f5eed3740f61620d88619deebe2999ddc774 (diff)
downloadphp-git-6ec494016b296c4dcc184f08ff78ad85178ccd1d.tar.gz
Extend ignore list for DLLs to not to look after
fix typo
Diffstat (limited to 'win32')
-rw-r--r--win32/build/mkdist.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/win32/build/mkdist.php b/win32/build/mkdist.php
index 7fac172145..851aff06ad 100644
--- a/win32/build/mkdist.php
+++ b/win32/build/mkdist.php
@@ -36,7 +36,8 @@ function get_depends($module)
'odbc32.dll', 'ole32.dll', 'oleaut32.dll', 'rpcrt4.dll',
'shell32.dll', 'shlwapi.dll', 'user32.dll', 'ws2_32.dll', 'ws2help.dll',
'comctl32.dll', 'winmm.dll', 'wsock32.dll', 'winspool.drv', 'msasn1.dll',
- 'secur32.dll', 'netapi32.dll',
+ 'secur32.dll', 'netapi32.dll', 'dnsapi.dll', 'psapi.dll', 'normaliz.dll',
+ 'iphlpapi.dll',
/* apache */
'apachecore.dll',
@@ -64,7 +65,9 @@ function get_depends($module)
* (msvcrt7x.dll) are not */
'msvcrt.dll',
'msvcr90.dll',
- 'wldap32.dll'
+ 'wldap32.dll',
+ 'vcruntime140.dll',
+ 'msvcp140.dll',
);
global $build_dir, $extra_dll_deps, $ext_targets, $sapi_targets, $pecl_targets, $phpdll, $per_module_deps, $pecl_dll_deps;