diff --git a/ChangeLog b/ChangeLog index 073fd7c1f..b5126b498 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-09-09 Eric Wasylishen + + * Source/NSDistantObject.m: #ifdef to disable category + on Object was forgotten around the interface + 2010-09-10 Riccardo Mottola * Source/unix/GSRunLoopCtxt.m: only access array if port responds to selector, or it is not initialized diff --git a/Source/NSDistantObject.m b/Source/NSDistantObject.m index 0be61812b..b48ba5fe7 100644 --- a/Source/NSDistantObject.m +++ b/Source/NSDistantObject.m @@ -67,9 +67,11 @@ static int debug_proxy = 0; static Class placeHolder = 0; static Class distantObjectClass = 0; +#ifndef __GNUSTEP_RUNTIME__ @interface Object (NSConformsToProtocolNamed) - (BOOL) _conformsToProtocolNamed: (const char*)aName; @end +#endif @interface NSObject (NSConformsToProtocolNamed) - (BOOL) _conformsToProtocolNamed: (const char*)aName; @end