mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Final fixes for DLLs
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6848 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d26536528b
commit
656fde90c0
16 changed files with 309 additions and 149 deletions
|
@ -410,7 +410,7 @@ int main(int argc, char *argv[], char **env)
|
|||
{
|
||||
id pool;
|
||||
|
||||
#if 0 || LIB_FOUNDATION_LIBRARY
|
||||
#if LIB_FOUNDATION_LIBRARY || defined(GS_PASS_ARGUMENTS)
|
||||
[NSProcessInfo initializeWithArguments:argv count:argc environment:env];
|
||||
#endif
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <Foundation/NSRunLoop.h>
|
||||
#include <Foundation/NSDate.h>
|
||||
#include <Foundation/NSAutoreleasePool.h>
|
||||
#include <base/Coder.h>
|
||||
#include <Foundation/NSDebug.h>
|
||||
#include <base/BinaryCStream.h>
|
||||
#include <assert.h>
|
||||
#include "server.h"
|
||||
|
@ -45,7 +45,6 @@ GSDebugAllocationActive(YES);
|
|||
[NSDistantObject setDebug: 10];
|
||||
[TcpInPort setDebug: 10];
|
||||
|
||||
[Coder setDebugging:YES];
|
||||
[BinaryCStream setDebugging:YES];
|
||||
|
||||
#if NeXT_runtime
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
|
||||
#include <base/preface.h>
|
||||
#include <Foundation/NSConnection.h>
|
||||
#include <base/Array.h>
|
||||
|
||||
typedef struct _small_struct {
|
||||
unsigned char z;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
@implementation Server
|
||||
- init
|
||||
{
|
||||
the_array = [[Array alloc] init];
|
||||
the_array = [[NSMutableArray alloc] init];
|
||||
return self;
|
||||
}
|
||||
- (unsigned) count
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue