diff options
author | rpj <rpj> | 2005-03-12 23:00:53 +0000 |
---|---|---|
committer | rpj <rpj> | 2005-03-12 23:00:53 +0000 |
commit | 47d030b0ab9adf502451ef1558eeca50e67063c0 (patch) | |
tree | 2754c946c36b276241e44208ad6d7f5c6cd45bce /Makefile | |
parent | 4ec6a9e7044d8c853d1cd734facb21316f850106 (diff) |
New design for pthread_once (with cancelability); ABI change
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -6,9 +6,9 @@ # dll and the lib, respectively. Probably all that needs to change is $DEVROOT.
-# DLL_VER: -# See pthread.h and README - This number is computed as 'current - age' -DLL_VER = 1 +# DLL_VER:
+# See pthread.h and README - This number is computed as 'current - age'
+DLL_VER = 2
DEVROOT = c:\pthreads
@@ -25,8 +25,8 @@ CFLAGS = /W3 /MD /nologo /Yd /I. /D_WIN32_WINNT=0x400 /DHAVE_CONFIG_H #CFLAGS = /W3 /MD /nologo /Yd /Zi /I. /D_WIN32_WINNT=0x400 /DHAVE_CONFIG_H
-# Default cleanup style -CLEANUP = __CLEANUP_C +# Default cleanup style
+CLEANUP = __CLEANUP_C
# C++ Exceptions
VCEFLAGS = /GX /TP $(CFLAGS)
|