+2007-12-03 Helge Hess <me@helgehess.eu>
+
+ * NGTextStream.m: do not use exception handlers in combination with
+ varargs on MacOS >10.5 (v4.7.54)
+
2007-08-09 Wolfgang Sourdeau <WSourdeau@Inverse.CA>
* NGInternetSocketAddress.m: properly convert ports returned by
va_start(ap, _format);
+#if MAC_OS_X_VERSION_MAX_ALLOWED > 1050
+ /* As soon as we add an exception handler on Leopard compilation
+ * breaks. Probably some GCC bug.
+ */
+ res = [self writeFormat:_format arguments:ap];
+#else
NS_DURING {
res = [self writeFormat:_format arguments:ap];
}
[localException raise];
}
NS_ENDHANDLER;
+#endif
+
va_end(ap);
return res;
# version file
-SUBMINOR_VERSION:=53
+SUBMINOR_VERSION:=54