![]() |
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:27 UTC Return to Bug #55710 | Download this patchThis patch renders other patches obsolete Obsolete patches: Patch Revisions:
Developer: rquadling@php.netIndex: 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; } |
![]() All rights reserved. |
Last updated: Wed Apr 30 03:01:27 2025 UTC |