aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/config.m4.template
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2017-05-19 20:00:06 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2017-05-19 20:00:06 -0700
commitaf525b3a2691128323c97ab5fde56ba5ab7198f2 (patch)
treebfff33fb284875c1b07b3db902a61d0b519c4f62 /templates/config.m4.template
parent7569676ffe68597201c91ac2f17390ec1c3d7063 (diff)
PHP: windows config.w32 file
Diffstat (limited to 'templates/config.m4.template')
-rw-r--r--templates/config.m4.template4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/config.m4.template b/templates/config.m4.template
index a6357b7fb1..f91893c2bd 100644
--- a/templates/config.m4.template
+++ b/templates/config.m4.template
@@ -35,7 +35,7 @@
${source} ${"\\"}
% endfor
% for lib in libs:
- % if lib.name in php_config_m4.get('deps', []):
+ % if lib.name in php_config_m4.get('deps', []) and lib.name != 'z':
% for source in lib.src:
${source} ${"\\"}
% endfor
@@ -49,7 +49,7 @@
<%
dirs = {}
for lib in libs:
- if lib.name in php_config_m4.get('deps', []):
+ if lib.name in php_config_m4.get('deps', []) and lib.name != 'z':
for source in lib.src:
dirs[source[:source.rfind('/')]] = 1
dirs = dirs.keys()