![]() |
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patch missing_dirs.patch for *Compile Issues Bug #55710Patch version 2011-09-16 12:12 UTC Return to Bug #55710 | Download this patchThis patch is obsolete Obsoleted by patches: Patch Revisions:
Developer: RQuadling@GMail.comIndex: confutils.js =================================================================== --- confutils.js (revision 316848) +++ confutils.js (working copy) @@ -112,7 +112,7 @@ configure_subst = WScript.CreateObject("Scripting.Dictionary"); configure_hdr = WScript.CreateObject("Scripting.Dictionary"); -build_dirs = new Array(); +build_dirs = new Array('win32'); extension_include_code = ""; extension_module_ptrs = ""; @@ -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; } |
![]() All rights reserved. |
Last updated: Wed Apr 30 06:01:26 2025 UTC |