summaryrefslogtreecommitdiff
path: root/gnustep-libs/dbuskit/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /gnustep-libs/dbuskit/files
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'gnustep-libs/dbuskit/files')
-rw-r--r--gnustep-libs/dbuskit/files/dbuskit-0.1.1-remove_gc.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/gnustep-libs/dbuskit/files/dbuskit-0.1.1-remove_gc.patch b/gnustep-libs/dbuskit/files/dbuskit-0.1.1-remove_gc.patch
deleted file mode 100644
index cc20e8dbe166..000000000000
--- a/gnustep-libs/dbuskit/files/dbuskit-0.1.1-remove_gc.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- trunk/Source/DKNotificationCenter.m 2016/03/26 05:10:00 39611
-+++ trunk/Source/DKNotificationCenter.m 2016/03/28 06:16:41 39612
-@@ -519,7 +519,7 @@
- {
- return nil;
- }
-- observer = GS_GC_HIDE(anObserver);
-+ observer = anObserver;
- selector = aSelector;
-
- // Make sure the necessary components are there and that the selector takes a
-@@ -535,7 +535,7 @@
-
- - (id)observer
- {
-- return GS_GC_UNHIDE(observer);
-+ return observer;
- }
-
- - (SEL)selector
-@@ -561,7 +561,7 @@
- // callback and need to avoid the reentrancy. We do this by scheduling
- // delivery of the notification on the run loop.
- [[NSRunLoop currentRunLoop] performSelector: selector
-- target: GS_GC_UNHIDE(observer)
-+ target: observer
- argument: notification
- order: UINT_MAX
- modes: [NSArray arrayWithObject: NSDefaultRunLoopMode]];