mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
fixup to work with apple runtime.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33789 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fbd9fb9855
commit
4b21a9d8a8
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2011-08-26 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* libs/base/trunk/config/config.objc.m: If we don't assume Object
|
||||
exists in libobjc, we must implement +initialize so that the runtime
|
||||
won't crash when it tries to initialize our class.
|
||||
|
||||
2011-08-25 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Tests/base/NSObject/test01.m: Only test for -isClass on GNUstep base.
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
@end
|
||||
|
||||
@implementation Test
|
||||
+ (void) initialize
|
||||
{
|
||||
return;
|
||||
}
|
||||
+(int) testResult
|
||||
{
|
||||
return -1;
|
||||
|
|
Loading…
Reference in a new issue