Navigation Menu

Skip to content

Commit

Permalink
MFH Fix #47819 (Getting pdo_mysql.so: undefined symbol: mysqlnd_debug…
Browse files Browse the repository at this point in the history
…_init at

    startup)
  • Loading branch information
johannes committed Mar 30, 2009
1 parent 76b30f6 commit bcb4003
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions NEWS
Expand Up @@ -3,6 +3,8 @@ PHP NEWS
?? ??? 200?, PHP 5.3.0 RC 2 ?? ??? 200?, PHP 5.3.0 RC 2
- Undeprecated ticks. (Arnaud) - Undeprecated ticks. (Arnaud)


- Fixed bug #47819 (Getting pdo_mysql.so: undefined symbol: mysqlnd_debug_init
at startup). (Johannes)
- Fixed bug #47816 (pcntl tests failing on NetBSD). (Matteo) - Fixed bug #47816 (pcntl tests failing on NetBSD). (Matteo)
- Fixed bug #44861 (scrollable cursor don't work with pgsql). (Matteo) - Fixed bug #44861 (scrollable cursor don't work with pgsql). (Matteo)
- Fixed bug #47779 (Wrong value for SIG_UNBLOCK and SIG_SETMASK constants). - Fixed bug #47779 (Wrong value for SIG_UNBLOCK and SIG_SETMASK constants).
Expand Down
2 changes: 1 addition & 1 deletion ext/mysqlnd/mysqlnd_debug.c
Expand Up @@ -618,7 +618,7 @@ MYSQLND_CLASS_METHODS_END;




/* {{{ mysqlnd_debug_init */ /* {{{ mysqlnd_debug_init */
MYSQLND_DEBUG *mysqlnd_debug_init(TSRMLS_D) PHPAPI MYSQLND_DEBUG *mysqlnd_debug_init(TSRMLS_D)
{ {
MYSQLND_DEBUG *ret = ecalloc(1, sizeof(MYSQLND_DEBUG)); MYSQLND_DEBUG *ret = ecalloc(1, sizeof(MYSQLND_DEBUG));
#ifdef ZTS #ifdef ZTS
Expand Down
2 changes: 1 addition & 1 deletion ext/mysqlnd/mysqlnd_debug.h
Expand Up @@ -58,7 +58,7 @@ struct st_mysqlnd_debug
}; };




MYSQLND_DEBUG *mysqlnd_debug_init(TSRMLS_D); PHPAPI MYSQLND_DEBUG *mysqlnd_debug_init(TSRMLS_D);


#define MYSQLND_MEM_D TSRMLS_DC ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC #define MYSQLND_MEM_D TSRMLS_DC ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC


Expand Down

0 comments on commit bcb4003

Please sign in to comment.