We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd709fe commit d2fd44cCopy full SHA for d2fd44c
1 file changed
extension/BuildPhpExtension/patches/http.ps1
@@ -0,0 +1,11 @@
1
+$fn = @"
2
+ARG_ENABLE("http", "whether to enable extended HTTP support", "no");
3
+
4
+base_dir = get_define('BUILD_DIR');
5
+if (!FSO.FolderExists(base_dir+"\\src")) {
6
+ WScript.Echo("Creating " + base_dir + "\\src" + "...");
7
+ FSO.CreateFolder(base_dir+"\\src");
8
+}
9
+"@
10
11
+(Get-Content config.w32) | ForEach-Object { $_.Replace('ARG_ENABLE("http", "whether to enable extended HTTP support", "no");', $fn) } | Set-Content config.w32
0 commit comments