ID: 43019
Updated by: [EMAIL PROTECTED]
Reported By: Jos dot Snellings at pandora dot be
Status: Feedback
Bug Type: Compile Failure
Operating System: win32
PHP Version: 5.2.4
New Comment:
This has already been fixed in CVS.
Previous Comments:
------------------------------------------------------------------------
[2007-10-18 13:28:59] [EMAIL PROTECTED]
The official snapshots build fine (-> snaps.php.net) and I can't find
and error in the code. Could you please give the original error message?
------------------------------------------------------------------------
[2007-10-18 13:06:23] Jos dot Snellings at pandora dot be
Description:
------------
Two compile failures:
mysql_get_client_version: brackets were omitted in function call.
Code should (probably) be:
PHP_MSHUTDOWN_FUNCTION(mysql)
{
#ifdef PHP_WIN32
unsigned long client_ver = mysql_get_client_version();
/* Can't call mysql_server_end() multiple times prior to 5.0.42 on
Windows */
if ((client_ver > 50042 && client_ver < 50100) || client_ver > 50122)
{
mysql_server_end();
}
#else
mysql_server_end();
#endif
UNREGISTER_INI_ENTRIES();
return SUCCESS;
}
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=43019&edit=1