diff options
author | Sebastian Bergmann <sebastian@php.net> | 2002-04-18 16:48:03 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2002-04-18 16:48:03 +0000 |
commit | c57ab20ac8575fc037480118e56555f9e626b467 (patch) | |
tree | 9bfe359c41159aa7dfae93fb01ffe37c9a9755b5 /ext/mysql/php_mysql.c | |
parent | ecf95deb6a9dd1f7c43a9de30a1a3a41d75674a9 (diff) | |
download | php-git-c57ab20ac8575fc037480118e56555f9e626b467.tar.gz |
Make use of HAVE_MYSQL. Reviewed by: Sterling.
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 09107790f1..a0b5e1ac9a 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -34,6 +34,8 @@ #include "ext/standard/info.h" #include "ext/standard/php_string.h" +#if HAVE_MYSQL + #ifdef PHP_WIN32 #include <winsock.h> #define signal(a, b) NULL @@ -2255,6 +2257,8 @@ PHP_FUNCTION(mysql_ping) } /* }}} */ +#endif + /* * Local variables: * tab-width: 4 |