Fix for apple-apple-apple

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26284 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-03-12 12:49:35 +00:00
parent 3fedbaf575
commit 11c344aabf
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2008-03-12 Richard Frith-Macdonald <rfm@gnu.org>
* Source/Additions/GSInsensitiveDictionary.m:
Don't do gnustep specific debug if building apple-apple-apple
2008-03-11 Adam Fedor <fedor@gnu.org> 2008-03-11 Adam Fedor <fedor@gnu.org>
* Version 1.15.3 * Version 1.15.3

View file

@ -373,11 +373,11 @@ static SEL objSel;
- (id) makeImmutableCopyOnFail: (BOOL)force - (id) makeImmutableCopyOnFail: (BOOL)force
{ {
#ifndef NDEBUG #if !defined(NDEBUG) && defined(GNUSTEP_BASE_LIBRARY)
GSDebugAllocationRemove(isa, self); GSDebugAllocationRemove(isa, self);
#endif #endif
isa = [_GSInsensitiveDictionary class]; isa = [_GSInsensitiveDictionary class];
#ifndef NDEBUG #if !defined(NDEBUG) && defined(GNUSTEP_BASE_LIBRARY)
GSDebugAllocationAdd(isa, self); GSDebugAllocationAdd(isa, self);
#endif #endif
return self; return self;