diff --git a/ChangeLog b/ChangeLog index 5c0366280..bef66b8b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-12 Richard Frith-Macdonald + + * Source/Additions/GSInsensitiveDictionary.m: + Don't do gnustep specific debug if building apple-apple-apple + 2008-03-11 Adam Fedor * Version 1.15.3 diff --git a/Source/Additions/GSInsensitiveDictionary.m b/Source/Additions/GSInsensitiveDictionary.m index 5d64163f4..b0b048f88 100644 --- a/Source/Additions/GSInsensitiveDictionary.m +++ b/Source/Additions/GSInsensitiveDictionary.m @@ -373,11 +373,11 @@ static SEL objSel; - (id) makeImmutableCopyOnFail: (BOOL)force { -#ifndef NDEBUG +#if !defined(NDEBUG) && defined(GNUSTEP_BASE_LIBRARY) GSDebugAllocationRemove(isa, self); #endif isa = [_GSInsensitiveDictionary class]; -#ifndef NDEBUG +#if !defined(NDEBUG) && defined(GNUSTEP_BASE_LIBRARY) GSDebugAllocationAdd(isa, self); #endif return self;