You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/10/06 14:29:12 UTC

svn commit: r822243 - /commons/sandbox/runtime/trunk/src/main/native/port/sysqueue.h

Author: mturk
Date: Tue Oct  6 12:29:12 2009
New Revision: 822243

URL: http://svn.apache.org/viewvc?rev=822243&view=rev
Log:
Latest Microsoft SDK defines SLIST_ENTRY. Undef their version

Modified:
    commons/sandbox/runtime/trunk/src/main/native/port/sysqueue.h

Modified: commons/sandbox/runtime/trunk/src/main/native/port/sysqueue.h
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/port/sysqueue.h?rev=822243&r1=822242&r2=822243&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/port/sysqueue.h (original)
+++ commons/sandbox/runtime/trunk/src/main/native/port/sysqueue.h Tue Oct  6 12:29:12 2009
@@ -85,6 +85,10 @@
 #define _Q_INVALIDATE(a)
 #endif
 
+#if defined(SLIST_ENTRY)
+#undef SLIST_ENTRY
+#endif
+
 /*
  * Singly-linked List definitions.
  */