summaryrefslogtreecommitdiff
path: root/ext/mssql/php_mssql.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-05-02 00:44:35 +0000
committerSascha Schumann <sas@php.net>2000-05-02 00:44:35 +0000
commitfe50664d4d0d5fad0e7ca52a42fe1d96461a4f31 (patch)
tree478da972aefeecd1d09c49a6a05a089ae80bfe90 /ext/mssql/php_mssql.c
parent0d383d9373e6764d4f36cfce41cb8a610766e9b6 (diff)
downloadphp-git-fe50664d4d0d5fad0e7ca52a42fe1d96461a4f31.tar.gz
#if COMPILE_DL
becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
Diffstat (limited to 'ext/mssql/php_mssql.c')
-rw-r--r--ext/mssql/php_mssql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c
index 72c2d7fd40..35c546dc99 100644
--- a/ext/mssql/php_mssql.c
+++ b/ext/mssql/php_mssql.c
@@ -18,7 +18,7 @@
/* $Id$ */
-#if COMPILE_DL
+#if defined(COMPILE_DL) || defined(COMPILE_DL_MSSQL)
#include "dl/phpdl.h"
#define HAVE_MSSQL 1
#endif
@@ -80,7 +80,7 @@ int mssql_globals_id;
PHP_MSSQL_API php_mssql_globals mssql_globals;
#endif
-#ifdef COMPILE_DL
+#if defined(COMPILE_DL) || defined(COMPILE_DL_MSSQL)
ZEND_GET_MODULE(mssql)
#endif