diff --git a/ChangeLog b/ChangeLog index 8a7aa578c..2ae09f965 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2010-09-01 Wolfgang Sourdeau + * Tests/Unit/SOGoTest.m (-run): fixed build on GNUstep >= 1.20. + * UI/MailerUI/UIxMailView.m (-sendMDNAction): new action for sending an MDN from the confirmation dialog. diff --git a/Tests/Unit/SOGoTest.m b/Tests/Unit/SOGoTest.m index 3574ac1b1..1d548543e 100644 --- a/Tests/Unit/SOGoTest.m +++ b/Tests/Unit/SOGoTest.m @@ -164,7 +164,12 @@ static NSString *SOGoTestAssertException = @"SOGoTestAssertException"; int count, max; SEL testMethod; +#if ((GNUSTEP_BASE_MAJOR_VERSION > 1) \ + || ((GNUSTEP_BASE_MAJOR_VERSION == 1) && (GNUSTEP_BASE_MINOR_VERSION >= 20))) methods = GSObjCMethodNames (self, NO); +#else + methods = GSObjCMethodNames (self); +#endif max = [methods count]; for (count = 0; count < max; count++) {