diff options
author | Anatol Belski <ab@php.net> | 2017-07-17 06:54:27 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-07-17 19:38:50 +0200 |
commit | 4ef9f536ba90113b3cd2afca01f09cddfc76f99a (patch) | |
tree | 986e757deccd2383e5daaa1fbe306a5d3b1a9d33 /win32 | |
parent | 4d08b9dac0d42d93ed1c6f0617e1426f013b981f (diff) | |
download | php-git-4ef9f536ba90113b3cd2afca01f09cddfc76f99a.tar.gz |
fix missing var for phpize
(cherry picked from commit 36c3d7140753bb692e36f5dcef7db7aa76224751)
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/confutils.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/build/confutils.js b/win32/build/confutils.js index a9ef15e70c..a0352b5545 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -2174,6 +2174,7 @@ function generate_phpize() CJ.WriteLine("var PHP_DEBUG=" + '"' + PHP_DEBUG + '"'); CJ.WriteLine("var PHP_DLL_LIB =" + '"' + get_define('PHPLIB') + '"'); CJ.WriteLine("var PHP_DLL =" + '"' + get_define('PHPDLL') + '"'); + CJ.WriteLine("var PHP_SECURITY_FLAGS =" + '"' + PHP_SECURITY_FLAGS + '"'); /* The corresponding configure options aren't enabled through phpize, thus these dummy declarations are required. */ |