diff options
author | Stig Bakken <ssb@php.net> | 1999-12-04 14:45:38 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-12-04 14:45:38 +0000 |
commit | 8f91051ddaff61f7b8e0940f79e50a83ba6a3329 (patch) | |
tree | 396367d49c7a47011c7d3a55830ae58c3fcf6d47 /ext/mysql/php_mysql.c | |
parent | efc84af94003531f2e670cdc754b0c455656198c (diff) | |
download | php-git-8f91051ddaff61f7b8e0940f79e50a83ba6a3329.tar.gz |
Fix shared mode for gd/xml/mysql extensions.
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 3d9b5e7982..234f280767 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -24,10 +24,6 @@ * ? Safe mode implementation */ -#ifdef COMPILE_DL -# include "dl/phpdl.h" -#endif - #include "php.h" #include "php_globals.h" #include "ext/standard/php3_standard.h" @@ -157,7 +153,8 @@ int mysql_globals_id; PHP_MYSQL_API php_mysql_globals mysql_globals; #endif -#ifdef COMPILE_DL +#ifdef COMPILE_DL_MYSQL +# include "dl/phpdl.h" DLEXPORT zend_module_entry *get_module(void) { return &mysql_module_entry; } #endif |