mirror of
https://github.com/gnustep/libs-performance.git
synced 2025-02-23 20:01:15 +00:00
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:
parent
c6901d7862
commit
b7ae464e45
4 changed files with 19 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue