[OGo-GNUstep-Port] experiences with OGo and gunstep-base on OpenBSD

Sebastian Reitenbach gnustep-port@opengroupware.org
Mon, 28 May 2007 21:29:50 +0200


gnustep-port@opengroupware.org wrote: 
> On May 28, 2007, at 20:43, Sebastian Reitenbach wrote:
> > thanks a lot, I tested it, but unfortunately it still runs into the
> > exception:
> 
> Sorry, but I don't believe that you compiled/installed the new code :-)
> 
but I'm sure I do:
$ ldd /usr/local/sbin/ogo-webui-1.1  | grep OGoFound
        08f19000 28f40000 rlib 0    1   
0      /usr/local/lib/libOGoFoundation.so.5.3

# nm /usr/local/lib/libOGoFoundation.so.5.3.107 | grep Und
00031599 t _i_LSWLabelHandler__setValue_forUndefinedKey_

I added a NSLog statement in the method:

#else /* use fallback methods on other Foundation libraries */
- (void)setValue:(id)_value forUndefinedKey:(NSString *)_key {
NSLog(@"here in WebUI/OGoFoundation/LSWLabelHandler.m: setValue: %@ 
forUndefinedKey: %@", _value, _key);
  // cannot set values, ignore ...
}
#endif

which I see on the console before it raises the exception:
2007-05-28 21:26:59.714 ogo-webui-1.1[9507] here in 
WebUI/OGoFoundation/LSWLabelHandler.m: setValue: Verschiedenes 
forUndefinedKey: misc


> In GDB say
> 
>    break [LSWLabelHandler -setValue:forUndefinedKey:]
> 
> (not sure about the exact syntax)
unfortunately this does not work.

kind regards
Sebastian