summaryrefslogtreecommitdiff
path: root/win32/build/phpize.js.in
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-10-03 19:38:40 +0200
committerAnatol Belski <ab@php.net>2014-10-03 19:38:40 +0200
commit1ff094deb481234c0aa2fb5b0ee144b7aba924ff (patch)
treeab5432da12b389676adf15f243f4aae484b68dbf /win32/build/phpize.js.in
parentea5f6eaf195f097fa35ed0172e1486664243199e (diff)
downloadphp-git-1ff094deb481234c0aa2fb5b0ee144b7aba924ff.tar.gz
remove the remains of dsp files handling
Diffstat (limited to 'win32/build/phpize.js.in')
-rw-r--r--win32/build/phpize.js.in11
1 files changed, 0 insertions, 11 deletions
diff --git a/win32/build/phpize.js.in b/win32/build/phpize.js.in
index a843cb91a4..b0ba0bbb82 100644
--- a/win32/build/phpize.js.in
+++ b/win32/build/phpize.js.in
@@ -24,7 +24,6 @@ var STDOUT = WScript.StdOut;
var FSO = WScript.CreateObject("Scripting.FileSystemObject");
var C = FSO.CreateTextFile("configure.js", true);
var B = FSO.CreateTextFile("configure.bat", true);
-var DSP = false;
re = /\\script/i;
var PHP_DIR=FSO.GetParentFolderName(WScript.ScriptFullName).replace(re,"");
@@ -222,16 +221,6 @@ if (FSO.FileExists(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"));
-// If project files were requested, pull in the code to generate them
-if (DSP == true) {
- C.WriteLine('PHP_DSP="yes"');
- C.WriteBlankLines(1);
- C.Write(file_get_contents(PHP_DIR + "win32/build/projectgen.js"));
-} else {
- C.WriteLine('PHP_DSP="no"');
- C.WriteBlankLines(1);
-}
-
// Pull in code for the base detection
modules = file_get_contents(PHP_DIR + "/script/config.w32.phpize.in");