From: Kalle Sommer Nielsen Date: Wed, 20 May 2009 10:18:51 +0000 (+0000) Subject: MFH: Fixed shared build X-Git-Tag: php-5.3.0RC3~188 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=061f229abcecc23e06de8966ca658cf6a188b6c5;p=php MFH: Fixed shared build --- diff --git a/ext/pdo_dblib/pdo_dblib.c b/ext/pdo_dblib/pdo_dblib.c index 46bd927a49..babda78587 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)