diff options
author | Anatol Belski <ab@php.net> | 2014-07-17 09:32:44 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-07-17 09:32:44 +0200 |
commit | 81c42db7b7799ea0826fe0dfb5ba399509a9affb (patch) | |
tree | 91b51a93f85c25e8b78c0aee5c31fb42ed0c3c8d /win32/build/phpize.js.in | |
parent | eb10f035fc3252ab49ed641b868e9457b874b8b4 (diff) | |
parent | 9308df4f62ea40119545a9744e4cd2f6ae38ec42 (diff) | |
download | php-git-81c42db7b7799ea0826fe0dfb5ba399509a9affb.tar.gz |
Merge branch 'PHP-5.6'
* PHP-5.6:
implemented force usage of generated .h and .js deps in phpize mode
Diffstat (limited to 'win32/build/phpize.js.in')
-rw-r--r-- | win32/build/phpize.js.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/build/phpize.js.in b/win32/build/phpize.js.in index 235c0816a3..a5c83bde01 100644 --- a/win32/build/phpize.js.in +++ b/win32/build/phpize.js.in @@ -210,6 +210,9 @@ C.WriteLine("var MODE_PHPIZE = true;"); C.WriteLine("var PHP_DIR = " + '"' + PHP_DIR.replace(new RegExp('(["\\\\])', "g"), '\\$1') + '"');
C.Write(file_get_contents(PHP_DIR + "//script//ext_deps.js"));
+if (FSO.FileExists(PHP_DIR + "/script/ext_pickle.js")) {
+ C.Write(file_get_contents(PHP_DIR + "//script//ext_pickle.js"));
+}
C.Write(file_get_contents(PHP_DIR + "/script/confutils.js"));
C.Write(file_get_contents(PHP_DIR + "/script/config.phpize.js"));
|