diff options
author | Anatol Belski <ab@php.net> | 2014-07-17 21:49:23 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-07-17 21:49:23 +0200 |
commit | 3690e973d20ed10b30f85f2fb421976fa878052e (patch) | |
tree | 9131b9da3ce0f53140bc454520b802a061d3ff8b /win32/build/phpize.js.in | |
parent | 81c42db7b7799ea0826fe0dfb5ba399509a9affb (diff) | |
parent | 0662a0b0684ff187f56af40d0569bcad50b6885e (diff) | |
download | php-git-3690e973d20ed10b30f85f2fb421976fa878052e.tar.gz |
Merge branch 'PHP-5.6'
* PHP-5.6:
implemented usage of the non core ext deps in phpize mode
Diffstat (limited to 'win32/build/phpize.js.in')
-rw-r--r-- | win32/build/phpize.js.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/build/phpize.js.in b/win32/build/phpize.js.in index a5c83bde01..3178804212 100644 --- a/win32/build/phpize.js.in +++ b/win32/build/phpize.js.in @@ -208,6 +208,7 @@ STDOUT.WriteLine(PHP_DIR); C.WriteLine("/* This file automatically generated from script/confutils.js */");
C.WriteLine("var MODE_PHPIZE = true;");
C.WriteLine("var PHP_DIR = " + '"' + PHP_DIR.replace(new RegExp('(["\\\\])', "g"), '\\$1') + '"');
+C.WriteLine("var PHP_PREFIX = " + '"' + PHP_PREFIX.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")) {
|