|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-12-14 11:05 UTC] sas@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 23:00:01 2025 UTC |
Actually, I am trying to build php4-latest from snaps.php.net as of php4-200012131745... In ext/standard/string.c, line 63, inside function register_string_constants(), the code that reads #if !PHP_WIN32 REGISTER_LONG_CONSTANT("LC_MESSAGES", LC_MESSAGES, CONST_CS | CONST_PERS ISTENT); # endif should probably be changed to #ifdef LC_MESSAGES REGISTER_LONG_CONSTANT("LC_MESSAGES", LC_MESSAGES, CONST_CS | CONST_PERS ISTENT); #endif like what line 2381 of PHP_FUNCTION(setlocale) in the same file does. For whatever reason, in MacOS X Public Beta, LC_MESSAGES is not defined in locale.h.