Author: ahristov
Date: 2007-08-06 16:29:55 +0200 (Mon, 06 Aug 2007)
New Revision: 856
Modified:
trunk/mysqlnd/mysqlnd.c
Log:
Fix build failure with PHP5
Modified: trunk/mysqlnd/mysqlnd.c
===================================================================
--- trunk/mysqlnd/mysqlnd.c 2007-08-06 13:19:30 UTC (rev 855)
+++ trunk/mysqlnd/mysqlnd.c 2007-08-06 14:29:55 UTC (rev 856)
@@ -26,6 +26,7 @@
#include "mysqlnd_result.h"
#include "mysqlnd_statistics.h"
#include "mysqlnd_charset.h"
+#include "php_ini.h"
#include "ext/standard/basic_functions.h"
#include "ext/standard/php_lcg.h"
#include "ext/standard/info.h"
@@ -1667,7 +1668,7 @@
/* {{{ PHP_MINIT_FUNCTION
*/
-PHP_MINIT_FUNCTION(mysqlnd)
+static PHP_MINIT_FUNCTION(mysqlnd)
{
REGISTER_INI_ENTRIES();
@@ -1679,7 +1680,7 @@
/* {{{ PHP_MSHUTDOWN_FUNCTION
*/
-PHP_MSHUTDOWN_FUNCTION(mysqlnd)
+static PHP_MSHUTDOWN_FUNCTION(mysqlnd)
{
mysqlnd_library_end();
| Thread |
|---|
| • PHP mysqlnd svn commit: r856 - trunk/mysqlnd | ahristov | 6 Aug |