summaryrefslogtreecommitdiff
path: root/win32/build/buildconf.js
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/buildconf.js
parentea5f6eaf195f097fa35ed0172e1486664243199e (diff)
downloadphp-git-1ff094deb481234c0aa2fb5b0ee144b7aba924ff.tar.gz
remove the remains of dsp files handling
Diffstat (limited to 'win32/build/buildconf.js')
-rw-r--r--win32/build/buildconf.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/win32/build/buildconf.js b/win32/build/buildconf.js
index 2fa134a3b4..a3a4f1e9aa 100644
--- a/win32/build/buildconf.js
+++ b/win32/build/buildconf.js
@@ -23,7 +23,6 @@ WScript.StdOut.WriteLine("Rebuilding configure.js");
var FSO = WScript.CreateObject("Scripting.FileSystemObject");
var C = FSO.CreateTextFile("configure.js", true);
var B = FSO.CreateTextFile("configure.bat", true);
-var DSP = false;
var modules = "";
var MODULES = WScript.CreateObject("Scripting.Dictionary");
@@ -197,11 +196,6 @@ function buildconf_process_args()
WScript.StdOut.WriteLine("Adding " + argval + " to the module search path");
module_dirs[module_dirs.length] = argval;
}
-
- if (argname == '--add-project-files') {
- WScript.StdOut.WriteLine("Adding dsp templates into the mix");
- DSP = true;
- }
}
}
@@ -212,16 +206,6 @@ C.WriteLine("/* This file automatically generated from win32/build/confutils.js
C.WriteLine("MODE_PHPIZE=false;");
C.Write(file_get_contents("win32/build/confutils.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("win32/build/projectgen.js"));
-} else {
- C.WriteLine('PHP_DSP="no"');
- C.WriteBlankLines(1);
-}
-
// Pull in code from sapi and extensions
modules = file_get_contents("win32/build/config.w32");