From 11c344aabf718105dd2904f523fa8151bb73f325 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Wed, 12 Mar 2008 12:49:35 +0000 Subject: [PATCH] Fix for apple-apple-apple git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26284 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Source/Additions/GSInsensitiveDictionary.m | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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;