use of the gnustep module. Patches for the modern runtime from Debian (pointer to it from jca@) Additionally, some failing tests, due to using the modern runtime, are disabled The package is currently broken, and this is an attempt to fix it, and give people a chance to actually test it. proposed to go ahead by sthen@, also OK espie@, jca@
22 lines
440 B
Plaintext
22 lines
440 B
Plaintext
$OpenBSD: patch-src_TRObject_m,v 1.1 2017/06/19 21:02:11 sebastia Exp $
|
|
|
|
Index: src/TRObject.m
|
|
--- src/TRObject.m.orig
|
|
+++ src/TRObject.m
|
|
@@ -53,6 +53,7 @@
|
|
* Additionally, we implement brain-dead, non-thread-safe
|
|
* reference counting.
|
|
*/
|
|
+#ifndef MODERN_RUNTIME
|
|
@interface Object (AppleAddedAReallyStupidGCCWarning)
|
|
- (void) dealloc;
|
|
@end
|
|
@@ -102,4 +103,7 @@
|
|
[self dealloc];
|
|
}
|
|
|
|
+#else
|
|
+@implementation TRObject
|
|
+#endif
|
|
@end
|