List:Commits« Previous MessageNext Message »
From:kboortz Date:June 16 2007 12:04pm
Subject:PHP mysqlnd svn commit: r376 - trunk/mysqlnd
View as plain text  
Author: kboortz
Date: 2007-06-16 12:04:39 +0200 (Sat, 16 Jun 2007)
New Revision: 376

Modified:
   trunk/mysqlnd/portability.h
Log:
On Mac OS X, ulong seem to be a macro

Modified: trunk/mysqlnd/portability.h
===================================================================
--- trunk/mysqlnd/portability.h	2007-06-15 14:03:50 UTC (rev 375)
+++ trunk/mysqlnd/portability.h	2007-06-16 10:04:39 UTC (rev 376)
@@ -105,7 +105,7 @@
 error "Neither int or long is of 4 bytes width"
 #endif
 
-#if !defined(HAVE_ULONG) && !defined(__USE_MISC)
+#if !defined(HAVE_ULONG) && !defined(__USE_MISC) && !defined(ulong)
 typedef unsigned long    ulong;    /* Short for unsigned long */
 #endif
 #ifndef longlong_defined

Thread
PHP mysqlnd svn commit: r376 - trunk/mysqlndkboortz16 Jun