now (wrong):
if (self == [NSObject class])
{
extern void GSBuildStrings(); // See externs.m
extern const char* GSSetLocaleC(); // See GSLocale.m
GSSetLocaleC(""); // Set up locale from environment.
#ifdef __MINGW__
// See libgnustep-base-entry.m
extern void gnustep_base_socket_init();
gnustep_base_socket_init();
#endif
should be something like:
if (self == [NSObject class])
{
extern void GSBuildStrings(); // See externs.m
extern const char* GSSetLocaleC(const char *loc); // See GSLocale.m
#ifdef __MINGW__
// See libgnustep-base-entry.m
extern void gnustep_base_socket_init();
gnustep_base_socket_init();
#endif
GSSetLocaleC(""); // Set up locale from environment.
_______________________________________________
Bug-gnustep mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-gnustep