]> granicus.if.org Git - php/commitdiff
Allow mysqli to be built when imap (c-client) is used.
authorIlia Alshanetsky <iliaa@php.net>
Fri, 14 Feb 2003 21:27:13 +0000 (21:27 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Fri, 14 Feb 2003 21:27:13 +0000 (21:27 +0000)
ext/mysqli/php_mysqli.h

index dde223bf10c8c90f14e907912f8bdf144e964c14..1723b8f0f22ca79be3c85ca29853faa064ea10ed 100644 (file)
   $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 <mysql.h>
 
 #ifndef PHP_MYSQLI_H