mac 10.4 compatibility definitions

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@31596 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rmottola 2010-11-10 00:15:16 +00:00
parent c6901d7862
commit b7ae464e45
4 changed files with 19 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2010-11-10 Riccardo Mottola
* GSLinkedList.h
* GSSkipMutableArray.m
* GSIOThreadPool.h
Mac 10.4 compatibility definitions
2010-10-01 Richard Frith-Macdonald <rfm@gnu.org>
* GSIOThreadPool.h:

View file

@ -24,6 +24,10 @@
*/
#import <Foundation/NSObject.h>
#if !defined (GNUSTEP) && (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4)
#define NSUInteger unsigned int
#endif
@class NSThread;
@class NSLock;

View file

@ -24,6 +24,10 @@
*/
#import <Foundation/NSObject.h>
#if !defined (GNUSTEP) && (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4)
#define NSUInteger unsigned int
#endif
@class GSLinkedList;
/** GSListLink provides simple doubly linked list functionality to

View file

@ -30,6 +30,10 @@
#import "GSSkipMutableArray.h"
#import "GSIndexedSkipList.h"
#if !defined (GNUSTEP) && (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4)
#define NSUInteger unsigned int
#endif
static Class abstractClass = 0;
static Class concreteClass = 0;