ohrn Sun Mar 18 10:32:58 2001 EDT
Modified files:
/php4/ext/cpdf php_cpdf.h
Log:
Solved compile failure due to clash bewteen IMAP and ClibPDF headers.
Index: php4/ext/cpdf/php_cpdf.h
diff -u php4/ext/cpdf/php_cpdf.h:1.6 php4/ext/cpdf/php_cpdf.h:1.7
--- php4/ext/cpdf/php_cpdf.h:1.6 Sun Jul 2 16:46:38 2000
+++ php4/ext/cpdf/php_cpdf.h Sun Mar 18 10:32:58 2001
@@ -26,12 +26,19 @@
| Authors: Uwe Steinmann |
+----------------------------------------------------------------------+
*/
-/* $Id: php_cpdf.h,v 1.6 2000/07/02 23:46:38 sas Exp $ */
+/* $Id: php_cpdf.h,v 1.7 2001/03/18 18:32:58 ohrn Exp $ */
#ifndef PHP_CPDF_H
#define PHP_CPDF_H
#if HAVE_CPDFLIB
+
+/* The macro T is defined in the IMAP headers and clashes with a function
+ declaration here. Get rid of it. */
+
+#ifdef T
+#undef T
+#endif
#include <cpdflib.h>
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]