From 77ff47a8e8bcd9c4f37d4835daa6f61722e73d0c Mon Sep 17 00:00:00 2001 From: helge Date: Wed, 20 Jul 2005 16:46:22 +0000 Subject: [PATCH] fixed a compilation issue git-svn-id: http://svn.opengroupware.org/SOPE/trunk@928 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- sope-xml/libxmlSAXDriver/ChangeLog | 5 +++++ sope-xml/libxmlSAXDriver/TableCallbacks.m | 4 ++-- sope-xml/libxmlSAXDriver/Version | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sope-xml/libxmlSAXDriver/ChangeLog b/sope-xml/libxmlSAXDriver/ChangeLog index cbf018a7..50b4d769 100644 --- a/sope-xml/libxmlSAXDriver/ChangeLog +++ b/sope-xml/libxmlSAXDriver/ChangeLog @@ -1,3 +1,8 @@ +2005-07-20 Helge Hess + + * TableCallbacks.m: fixed a compilation issues with either gcc 4.0.1 + or Sarge (v4.5.20) + 2005-05-06 Helge Hess * libxmlSAXDriver.m: minor improvements to error messages (v4.5.19) diff --git a/sope-xml/libxmlSAXDriver/TableCallbacks.m b/sope-xml/libxmlSAXDriver/TableCallbacks.m index 08f221c5..738606f8 100644 --- a/sope-xml/libxmlSAXDriver/TableCallbacks.m +++ b/sope-xml/libxmlSAXDriver/TableCallbacks.m @@ -50,7 +50,7 @@ static BOOL __compareCString(void *table, } static void __retain(void *table, const void *anObject) {} -static void __release(void *table, void *anObject) {} +static void TableCallbacksRelease(void *table, void *anObject) {} static NSString *__describe(void *table, const void *anObject) { return [NSString stringWithFormat:@"%p", anObject]; @@ -60,7 +60,7 @@ const NSMapTableKeyCallBacks libxmlNonOwnedCStringMapKeyCallBacks = { (unsigned(*)(NSMapTable *, const void *))__hashCString, (BOOL(*)(NSMapTable *, const void *, const void *))__compareCString, (void (*)(NSMapTable *, const void *anObject))__retain, - (void (*)(NSMapTable *, void *anObject))__release, + (void (*)(NSMapTable *, void *anObject))TableCallbacksRelease, (NSString *(*)(NSMapTable *, const void *))__describe, (const void *)NULL }; diff --git a/sope-xml/libxmlSAXDriver/Version b/sope-xml/libxmlSAXDriver/Version index 365a9c2e..bf6a3729 100644 --- a/sope-xml/libxmlSAXDriver/Version +++ b/sope-xml/libxmlSAXDriver/Version @@ -1,3 +1,3 @@ # version -SUBMINOR_VERSION:=19 +SUBMINOR_VERSION:=20 -- 2.39.5