mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Bug #15353
* Source/NSProcessInfo.m (fallbackInitialisation): Move initialization to avoid compiler error. Reported by Stefan van den Oord. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22253 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2eab009ff9
commit
eb37725f8a
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-01-04 David Ayers <d.ayers@inode.at>
|
||||
|
||||
Bug #15353
|
||||
* Source/NSProcessInfo.m (fallbackInitialisation): Move
|
||||
initialization to avoid compiler error. Reported by
|
||||
Stefan van den Oord (stefan.vandenoord@gmail.com).
|
||||
|
||||
2005-12-21 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Version 1.11.2
|
||||
|
|
|
@ -186,6 +186,8 @@ static NSMutableDictionary *_gnu_environment = nil;
|
|||
// Array of debug levels set.
|
||||
static NSMutableSet *_debug_set = nil;
|
||||
|
||||
// Flag to indicate that fallbackInitialisation was executed.
|
||||
static BOOL fallbackInitialisation = NO;
|
||||
/*************************************************************************
|
||||
*** Implementing the gnustep_base_user_main function
|
||||
*************************************************************************/
|
||||
|
@ -1058,7 +1060,6 @@ int main(int argc, char *argv[], char *env[])
|
|||
@implementation NSProcessInfo (GNUstep)
|
||||
|
||||
static BOOL debugTemporarilyDisabled = NO;
|
||||
static BOOL fallbackInitialisation = NO;
|
||||
|
||||
/**
|
||||
* Fallback method. The developer must call this method to initialize
|
||||
|
|
Loading…
Reference in a new issue