[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
autogsdoc: patches for OSX
From: |
Stéphane Corthésy |
Subject: |
autogsdoc: patches for OSX |
Date: |
Tue, 25 Mar 2003 22:09:25 +0100 |
Hi,
Here are some patches to help compiling autogsdoc on OSX (using Apple's
Foundation). These are #include additions, except the last one which
replaces a method undefined on OSX by another one.
Stéphane
Index: autogsdoc.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/base/Tools/autogsdoc.m,v
retrieving revision 1.72
diff -r1.72 autogsdoc.m
509a510,512
> #ifdef NeXT_Foundation_LIBRARY
> #include "gnustep/base/GSCategories.h"
> #endif
Index: AGSHtml.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/base/Tools/AGSHtml.m,v
retrieving revision 1.62
diff -r1.62 AGSHtml.m
25a26,29
> #ifdef NeXT_Foundation_LIBRARY
> #include "gnustep/base/GSCategories.h"
> #include "gnustep/base/GSCompatibility.h"
> #endif
Index: AGSIndex.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/base/Tools/AGSIndex.m,v
retrieving revision 1.24
diff -r1.24 AGSIndex.m
25a26,29
> #ifdef NeXT_Foundation_LIBRARY
> #include "gnustep/base/GSCategories.h"
> #include "gnustep/base/GSCompatibility.h"
> #endif
Index: AGSOutput.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/base/Tools/AGSOutput.m,v
retrieving revision 1.47
diff -r1.47 AGSOutput.m
24a25,27
> #ifdef NeXT_Foundation_LIBRARY
> #include "gnustep/base/GSCategories.h"
> #endif
Index: AGSParser.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/base/Tools/AGSParser.m,v
retrieving revision 1.50
diff -r1.50 AGSParser.m
24a25,27
> #ifdef NeXT_Foundation_LIBRARY
> #include "gnustep/base/GSCategories.h"
> #endif
193c196
< fmt = [NSString stringWithFormat: fmt arguments: args];
---
> fmt = [[[NSString alloc] initWithFormat: fmt arguments: args]
autorelease];
- autogsdoc: patches for OSX,
Stéphane Corthésy <=