diff options
| author | Xinchen Hui <laruence@php.net> | 2015-05-05 11:06:23 +0800 |
|---|---|---|
| committer | Xinchen Hui <laruence@php.net> | 2015-05-05 11:06:23 +0800 |
| commit | ba1c78c4107f677aa46509c3d435027a353bde54 (patch) | |
| tree | bc75a51ca1fe8f40f138f57d3571b669a7630db8 | |
| parent | 24992a14222265b30e3aa9635e630d59867f7997 (diff) | |
| parent | c4f8dd9071c981162d1df82d9c742170b3a00365 (diff) | |
| download | php-git-ba1c78c4107f677aa46509c3d435027a353bde54.tar.gz | |
Merge branch 'PHP-5.6' of git.php.net:php-src into PHP-5.6
| -rw-r--r-- | win32/build/confutils.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/win32/build/confutils.js b/win32/build/confutils.js index ab87a2237f..97e3cf95a6 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -1937,6 +1937,14 @@ function generate_phpize() CJ.WriteLine("var PHP_ZTS =" + '"' + PHP_ZTS + '"');
CJ.WriteLine("var PHP_DLL_LIB =" + '"' + get_define('PHPLIB') + '"');
CJ.WriteLine("var PHP_DLL =" + '"' + get_define('PHPDLL') + '"');
+
+ /* The corresponding configure options aren't enabled through phpize,
+ thus these dummy declarations are required. */
+ CJ.WriteLine("var PHP_ANALYZER =" + '"no"');
+ CJ.WriteLine("var PHP_PGO =" + '"no"');
+ CJ.WriteLine("var PHP_PGI =" + '"no"');
+ CJ.WriteLine("var PHP_ALL_SHARED =" + '"no"');
+
CJ.WriteBlankLines(1);
CJ.Close();
}
|
