From: Ilia Alshanetsky Date: Fri, 14 Feb 2003 21:27:13 +0000 (+0000) Subject: Allow mysqli to be built when imap (c-client) is used. X-Git-Tag: RELEASE_0_5~1006 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8e0290cd613c3e9fa5489486becf71c7374e678;p=php Allow mysqli to be built when imap (c-client) is used. --- diff --git a/ext/mysqli/php_mysqli.h b/ext/mysqli/php_mysqli.h index dde223bf10..1723b8f0f2 100644 --- a/ext/mysqli/php_mysqli.h +++ b/ext/mysqli/php_mysqli.h @@ -18,6 +18,13 @@ $Id$ */ +/* A little hack to prevent build break, when mysql is used together with + * c-client, which also defines LIST. + */ +#ifdef LIST +#undef LIST +#endif + #include #ifndef PHP_MYSQLI_H