Minor portability fix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13729 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-05-28 19:52:27 +00:00
parent 826980c384
commit 17345e79c3
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-05-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSObject.m: Change order of zombie initialisation for
darwin port.
2002-05-28 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/gnustep/base/GSMime.h: Make set... methods return void.

View file

@ -719,9 +719,9 @@ static BOOL double_release_check_enabled = NO;
gnustep_global_lock = [[NSRecursiveLock alloc] init];
// Zombie management stuff.
zombieClass = [NSZombie class];
zombieMap = NSCreateMapTable(NSNonOwnedPointerMapKeyCallBacks,
NSNonOwnedPointerMapValueCallBacks, 0);
zombieClass = [NSZombie class];
NSZombieEnabled = GSEnvironmentFlag("NSZombieEnabled", NO);
NSDeallocateZombies = GSEnvironmentFlag("NSDeallocateZombies", NO);