1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00

fix build broken by the fix for bug #49306

This commit is contained in:
Antony Dovgal
2009-08-21 07:46:43 +00:00
parent f3f8bd086e
commit 855a458b06
+6 -4
View File
@@ -552,10 +552,12 @@ static struct pdo_dbh_methods mysql_methods = {
};
/* }}} */
#ifdef PHP_WIN32
# define MYSQL_UNIX_ADDR "MySQL"
#else
# define MYSQL_UNIX_ADDR PDO_MYSQL_G(default_socket)
#ifdef PDO_USE_MYSQLND
# ifdef PHP_WIN32
# define MYSQL_UNIX_ADDR "MySQL"
# else
# define MYSQL_UNIX_ADDR PDO_MYSQL_G(default_socket)
# endif
#endif
/* {{{ pdo_mysql_handle_factory */