diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | implement.h | 3 |
3 files changed, 6 insertions, 6 deletions
@@ -1,9 +1,13 @@ -2011-07-02 Ross Johnson <ross dot johnson at homemail dot com dot au>
+2011-07-03 Ross Johnson <ross dot johnson at homemail dot com dot au>
* pthread_spin_unlock.c (EPERM): Return success if unlocking a lock
that is not locked, because single CPU machines wrap a
PTHREAD_MUTEX_NORMAL mutex, which returns success in this case.
+2011-07-03 Daniel Richard G. <skunk at iskunk dot org>
+
+ * Makefile (_WIN32_WINNT): Removed; duplicate definition in implement.h.
+
2011-07-02 Daniel Richard G. <skunk at iskunk dot org>
* Makefile: Cleanups and implovements.
@@ -28,8 +28,7 @@ OPTIM = /O2 /Ob2 OPTIMD = CC = cl -#CFLAGS = /W3 /MD /nologo /I. /D_WIN32_WINNT=0x400 /DHAVE_PTW32_CONFIG_H -CPPFLAGS = /I. /D_WIN32_WINNT=0x400 /DHAVE_PTW32_CONFIG_H +CPPFLAGS = /I. /DHAVE_PTW32_CONFIG_H CFLAGS = /W3 /MD /nologo CFLAGSD = /Z7 $(CFLAGS) diff --git a/implement.h b/implement.h index c4a00d2..c4d0a52 100644 --- a/implement.h +++ b/implement.h @@ -38,9 +38,6 @@ #if !defined(_IMPLEMENT_H) #define _IMPLEMENT_H -#if defined(_WIN32_WINNT) -#undef _WIN32_WINNT -#endif #define _WIN32_WINNT 0x400 #include <windows.h> |