Add=yes fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17522 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2003-08-24 02:21:08 +00:00
parent cfb39df8a1
commit 952b269d93
3 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2003-08-23 Adam Fedor <fedor@gnu.org>
* Tools/AGSIndex.m: Add NSString compatibility interface
when compiling on apple-apple-apple.
* Tools/AGSHtml.m: idem.
2003-08-15 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSObject.m: Trivial cast to avoid compiler warnings.

View file

@ -25,7 +25,10 @@
#include "GNUstepBase/GNUstep.h"
#include "GNUstepBase/GSCategories.h"
#ifdef NeXT_Foundation_LIBRARY
#include "GNUstepBase/GSCompatibility.h"
@interface NSString(GSCompatibility)
- (BOOL) boolValue;
- (NSString*) substringFromRange:(NSRange)range;
@end
#endif
static int XML_ELEMENT_NODE;

View file

@ -25,9 +25,13 @@
#include "GNUstepBase/GNUstep.h"
#include "GNUstepBase/GSCategories.h"
#ifdef NeXT_Foundation_LIBRARY
#include "GNUstepBase/GSCompatibility.h"
@interface NSString(GSCompatibility)
- (BOOL) boolValue;
- (NSString*) substringFromRange:(NSRange)range;
@end
#endif
static int XML_ELEMENT_NODE;
static int XML_TEXT_NODE;