From: Kalle Sommer Nielsen Date: Wed, 20 May 2009 10:19:28 +0000 (+0000) Subject: MFH: Fixed shared build X-Git-Tag: php-5.2.10RC1~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=020749e1609b34db1f0078e3a1d763d432da516d;p=php MFH: Fixed shared build --- diff --git a/ext/pdo_dblib/pdo_dblib.c b/ext/pdo_dblib/pdo_dblib.c index 9e1d7112e7..26bf945475 100644 --- a/ext/pdo_dblib/pdo_dblib.c +++ b/ext/pdo_dblib/pdo_dblib.c @@ -79,8 +79,12 @@ zend_module_entry pdo_dblib_module_entry = { }; #if defined(COMPILE_DL_PDO_DBLIB) || defined(COMPILE_DL_PDO_MSSQL) +#if PDO_DBLIB_IS_MSSQL +ZEND_GET_MODULE(pdo_mssql) +#else ZEND_GET_MODULE(pdo_dblib) #endif +#endif int error_handler(DBPROCESS *dbproc, int severity, int dberr, int oserr, char *dberrstr, char *oserrstr)