]> err.no Git - sope/commitdiff
fixed a compilation issue
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 20 Jul 2005 16:46:22 +0000 (16:46 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 20 Jul 2005 16:46:22 +0000 (16:46 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@928 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-xml/libxmlSAXDriver/ChangeLog
sope-xml/libxmlSAXDriver/TableCallbacks.m
sope-xml/libxmlSAXDriver/Version

index cbf018a78cf6f1dbe3583fc0369dce6575a9562e..50b4d76932b808a22a1dfd6a9b289e78f2ff09f9 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-20  Helge Hess  <helge.hess@skyrix.com>
+
+       * TableCallbacks.m: fixed a compilation issues with either gcc 4.0.1
+         or Sarge (v4.5.20)
+
 2005-05-06  Helge Hess  <helge.hess@opengroupware.org>
 
        * libxmlSAXDriver.m: minor improvements to error messages (v4.5.19)
index 08f221c566d03f6bc59fb27be04217ff8749050f..738606f85244ceaf9099ede98ee0e2c5cde570ac 100644 (file)
@@ -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
 };
index 365a9c2e7b5825cafedc9cc840b1221ca4d66462..bf6a3729a3c8da3cc3357087e55f72ec7d23c531 100644 (file)
@@ -1,3 +1,3 @@
 # version
 
-SUBMINOR_VERSION:=19
+SUBMINOR_VERSION:=20