From 020749e1609b34db1f0078e3a1d763d432da516d Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Wed, 20 May 2009 10:19:28 +0000 Subject: [PATCH] MFH: Fixed shared build --- ext/pdo_dblib/pdo_dblib.c | 4 ++++ 1 file changed, 4 insertions(+) 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) -- 2.50.1