php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #55710
Patch missing_dirs.patch revision 2011-09-16 12:27 UTC by rquadling@php.net
revision 2011-09-16 12:16 UTC by RQuadling at GMail dot com
revision 2011-09-16 12:12 UTC by RQuadling at GMail dot com

Patch missing_dirs.patch for *Compile Issues Bug #55710

Patch version 2011-09-16 12:27 UTC

Return to Bug #55710 | Download this patch
This patch renders other patches obsolete

Obsolete patches:

Patch Revisions:

Developer: rquadling@php.net

Index: confutils.js
===================================================================
--- win32/build/confutils.js	(revision 316848)
+++ win32/build/confutils.js	(working copy)
@@ -1582,6 +1582,9 @@
 	}
 
 	STDOUT.WriteLine("Generating files...");
+	if (!MODE_PHPIZE) {
+		ADD_FLAG("BUILD_DIRS_SUB", "devel");
+	}
 	generate_makefile();
 	if (!MODE_PHPIZE) {
 		generate_internal_functions();
@@ -1771,7 +1774,7 @@
 	if (configure_subst.Exists(name)) {
 		var curr_flags = configure_subst.Item(name);
 
-		if (curr_flags.indexOf(flags) >= 0) {
+		if (curr_flags.indexOf(flags) == 0 || curr_flags.indexOf(' ' + flags) > 0) {
 			return;
 		}
 		
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 14:01:31 2024 UTC