Cleanups and updates to be compatible with current MacOS-X

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23735 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2006-10-03 13:35:50 +00:00
parent d73bbdbd15
commit 5b4cd6ad8a
9 changed files with 613 additions and 345 deletions

View file

@ -1,3 +1,15 @@
2006-10-03 Richard Frith-Macdonald <rfm@gnu.org>
* Version: Bump to version for next release.
* configure.ac: Check for utsname
* configure: Regenerate
* Headers/Additions/GNUstepBase/config.h.in: Regenerate
* Headers/Foundation/NSObject.h: Small documentaion improvement
* Headers/Foundation/NSProcessInfo.h: Add documentation and update.
* Source/NSProcessInfo.m: Moved documentation to header, clean up
and complete operating system code.
* Testing/nsprocessinfo.m: Trivial test updates. Avoid use of cString
2006-10-02 Nicola Pero <nicola.pero@meta-innovation.com>
More work on having the default flattened gnustep build with just

View file

@ -330,6 +330,9 @@
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have the <sys/utsname.h> header file. */
#undef HAVE_SYS_UTSNAME_H
/* Define to 1 if you have the <sys/vfs.h> header file. */
#undef HAVE_SYS_VFS_H
@ -414,25 +417,25 @@
/* Define to 1 if the `setpgrp' function takes no argument. */
#undef SETPGRP_VOID
/* The size of a `double', as computed by sizeof. */
/* The size of `double', as computed by sizeof. */
#undef SIZEOF_DOUBLE
/* The size of a `float', as computed by sizeof. */
/* The size of `float', as computed by sizeof. */
#undef SIZEOF_FLOAT
/* The size of a `int', as computed by sizeof. */
/* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT
/* The size of a `long', as computed by sizeof. */
/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The size of a `long long', as computed by sizeof. */
/* The size of `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG
/* The size of a `short', as computed by sizeof. */
/* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT
/* The size of a `void*', as computed by sizeof. */
/* The size of `void*', as computed by sizeof. */
#undef SIZEOF_VOIDP
/* Define to 1 if you have the ANSI C header files. */
@ -460,5 +463,5 @@
#undef inline
#endif
/* Define to `unsigned' if <sys/types.h> does not define. */
/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t

View file

@ -114,8 +114,10 @@ extern "C" {
(!defined(GS_OPENSTEP_V) || (GS_OPENSTEP_V >= ADD && GS_OPENSTEP_V < REM))
/**
* A constant to represent a feature which is not present in any version.
* Use this to say a feature is not present in an API.<br />
* A constant which is the lowest possible version number (0) so that
* when used as the removal version (second argument of the GS_API_VERSION
* or OS_API_VERSION macro) represents a feature which is not present in
* any version.<br />
* eg.<br />
* #if <ref type="macro" id="OS_API_VERSION">OS_API_VERSION</ref>
* (GS_API_NONE, GS_API_NONE)<br />

View file

@ -39,12 +39,14 @@ extern "C" {
@class NSData;
@class NSMutableSet;
#ifndef STRICT_OPENSTEP
/*
* Constants returned by -operatingSystem
#if OS_API_VERSION(GS_API_MACOSX,GS_API_LATEST)
/**
* Constants returned by the -operatingSystem method.
* NB. The presence of a constant in this list does *NOT* imply that
* the named operating system is supported. Some values are provided
* for MacOS-X compatibility only.
* for MacOS-X compatibility or are obsolete and provided for
* backward compatibility.
*/
enum {
NSWindowsNTOperatingSystem = 1,
@ -54,52 +56,200 @@ enum {
NSMACHOperatingSystem,
NSSunOSOperatingSystem,
NSOSF1OperatingSystem,
NSGNULinuxOperatingSystem = 100,
NSBSDOperatingSystem,
NSBeOperatingSystem,
NSCygwinOperatingSystem
#if OS_API_VERSION(GS_API_NONE,GS_API_NONE)
GSGNULinuxOperatingSystem = 100,
GSBSDOperatingSystem,
GSBeOperatingSystem,
GSCygwinOperatingSystem
#if GS_API_VERSION(0,011500)
// Defines of deprecated constants for backward compatibility
#define NSGNULinuxOperatingSystem GSGNULinuxOperatingSystem
#define NSBSDOperatingSystem GSBSDOperatingSystem
#define NSBeOperatingSystem GSBeOperatingSystem
#define NSCygwinOperatingSystem GSCygwinOperatingSystem
#endif /* GS_API_VERSION(0,011500) */
#endif /* OS_API_VERSION(GS_API_NONE,GS_API_NONE) */
};
#endif
#endif /* OS_API_VERSION(GS_API_MACOSX,GS_API_LATEST) */
@interface NSProcessInfo: NSObject
/**
* Returns the shared NSProcessInfo object for the current process.
*/
+ (NSProcessInfo*) processInfo;
/**
* Returns an array containing the arguments supplied to start this
* process.<br />
* NB. In GNUstep, any arguments of the form --GNU-Debug=...
* are <em>not</em> included in this array ... they are part of the
* debug mechanism, and are hidden so that setting debug variables
* will not effect the normal operation of the program.<br />
* Please note, the special <code>--GNU-Debug=...</code> syntax differs from
* that which is used to specify values for the [NSUserDefaults] system.<br />
* User defaults are set on the command line by specifying the default name
* (with a leading hyphen) as one argument, and the default value as the
* following argument. The arguments used to set user defaults are
* present in the array returned by this method.
*/
- (NSArray*) arguments;
/**
* Returns a dictionary giving the environment variables which were
* provided for the process to use.
*/
- (NSDictionary*) environment;
/**
* Returns a string which may be used as a globally unique identifier.<br />
* The string contains the host name, the process ID, a timestamp and a
* counter.<br />
* The first three values identify the process in which the string is
* generated, while the fourth ensures that multiple strings generated
* within the same process are unique.
*/
- (NSString*) globallyUniqueString;
/**
* Returns the name of the machine on which this process is running.
*/
- (NSString*) hostName;
#ifndef STRICT_OPENSTEP
#if OS_API_VERSION(GS_API_MACOSX,GS_API_LATEST)
/**
* Return a number representing the operating system type.<br />
* The known types are listed in the header file, but not all of the
* listed types are actually implemented ... some are present for
* MacOS-X compatibility only.<br />
* <list>
* <item>NSWindowsNTOperatingSystem - used for Windows NT, and later</item>
* <item>NSWindows95OperatingSystem - probably never to be implemented</item>
* <item>NSSolarisOperatingSystem - used for Sun Solaris</item>
* <item>NSHPUXOperatingSystem - used for HP/UX</item>
* <item>NSMACHOperatingSystem - MacOSX and perhaps Hurd in future?</item>
* <item>NSSunOSOperatingSystem - Used for Sun Sun/OS</item>
* <item>NSOSF1OperatingSystem - Used for OSF/1 (probably obsolete)</item>
* <item>GSGNULinuxOperatingSystem - the GNUstep 'standard'</item>
* <item>GSBSDOperatingSystem - BSD derived operating systems</item>
* <item>GSBeperatingSystem - Used for Be-OS (probably obsolete)</item>
* <item>GSCygwinOperatingSystem - cygwin unix-like environment</item>
* </list>
*/
- (unsigned int) operatingSystem;
/**
* Return a human readable string representing the operating system type.<br />
* The supported types are -
* <list>
* <item>NSWindowsNTOperatingSystem - used for Windows NT, and later</item>
* <item>NSWindows95OperatingSystem - probably never to be implemented</item>
* <item>NSSolarisOperatingSystem - used for Sun Solaris</item>
* <item>NSHPUXOperatingSystem - used for HP/UX</item>
* <item>NSMACHOperatingSystem - MacOSX and perhaps Hurd in future?</item>
* <item>NSSunOSOperatingSystem - Used for Sun Sun/OS</item>
* <item>NSOSF1OperatingSystem - Used for OSF/1 (probably obsolete)</item>
* <item>GSGNULinuxOperatingSystem - the GNUstep 'standard'</item>
* <item>GSBSDOperatingSystem - BSD derived operating systems</item>
* <item>GSBeperatingSystem - Used for Be-OS (probably obsolete)</item>
* <item>GSCygwinOperatingSystem - cygwin unix-like environment</item>
* </list>
*/
- (NSString*) operatingSystemName;
/**
* Returns a human readable version string for the current operating system
* version.
*/
#if OS_API_VERSION(100200,GS_API_LATEST)
- (NSString *) operatingSystemVersionString;
#endif
/**
* Returns the process identifier number which uniquely identifies
* this process on this machine.
*/
- (int) processIdentifier;
#endif
/**
* Returns the process name for this process. This may have been set using
* the -setProcessName: method, or may be the default process name (the
* file name of the binary being executed).
*/
- (NSString*) processName;
/**
* Change the name of the current process to newName.
*/
- (void) setProcessName: (NSString*)newName;
@end
#ifndef NO_GNUSTEP
#if OS_API_VERSION(GS_API_NONE,GS_API_NONE)
/**
* Provides GNUstep-specific methods for controlled debug logging (a GNUstep
* facility) and an internal/developer-related method.
*/
@interface NSProcessInfo (GNUstep)
/**
* Returns a indication of whether debug logging is enabled.
* This returns YES unless a call to -setDebugLoggingEnabled: has
* been used to turn logging off.
*/
- (BOOL) debugLoggingEnabled;
/**
* This method returns a set of debug levels set using the
* --GNU-Debug=... command line option and/or the GNU-Debug
* user default.<br />
* You can modify this set to change the debug logging under
* your programs control ... but such modifications are not
* thread-safe.
*/
- (NSMutableSet*) debugSet;
/**
* This method permits you to turn all debug logging on or off
* without modifying the set of debug levels in use.
*/
- (void) setDebugLoggingEnabled: (BOOL)flag;
/**
* Set the file to which NSLog output should be directed.<br />
* Returns YES on success, NO on failure.<br />
* By default logging goes to standard error.
*/
- (BOOL) setLogFile: (NSString*)path;
/**
* Fallback/override method. The developer must call this method to initialize
* the NSProcessInfo system if none of the system-specific hacks to
* auto-initialize it are working.<br />
* It is also safe to call this method to override the effects
* of the automatic initialisation, which some applications may need
* to do when using GNUstep libraries embeddedm within other frameworks.
*/
+ (void) initializeWithArguments: (char**)argv
count: (int)argc
environment: (char**)env;
@end
/*
* This function determines if the specified debug level is present in the
* set of active debug levels.
/**
* Function for rapid testing to see if a debug level is set.<br />
* This is used by the debugging macros.<br />
* If debug logging has been turned off, this returns NO even if
* the specified level exists in the set of debug levels.
*/
GS_EXPORT BOOL GSDebugSet(NSString *level);
#endif
#endif /* GS_API_NONE */
#if defined(__cplusplus)
}

View file

@ -71,6 +71,9 @@
#ifdef HAVE_SYS_FCNTL_H
#include <sys/fcntl.h>
#endif
#ifdef HAVE_SYS_UTSNAME_H
#include <sys/utsname.h>
#endif
#ifdef HAVE_KVM_ENV
#include <kvm.h>
@ -97,6 +100,7 @@
#include "Foundation/NSAutoreleasePool.h"
#include "Foundation/NSHost.h"
#include "Foundation/NSLock.h"
#include "Foundation/NSDebug.h"
#include "GNUstepBase/GSCategories.h"
#include "GSPrivate.h"
@ -194,11 +198,17 @@ static NSArray *_gnu_arguments = nil;
// Dictionary of environment vars and their values
static NSMutableDictionary *_gnu_environment = nil;
// The operating system we are using.
static unsigned int _operatingSystem = 0;
static NSString *_operatingSystemName = nil;
static NSString *_operatingSystemVersion = 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
*************************************************************************/
@ -874,9 +884,6 @@ int main(int argc, char *argv[], char *env[])
#endif /* HAS_LOAD_METHOD && HAS_PROCFS */
/**
* Returns the shared NSProcessInfo object for the current process.
*/
+ (NSProcessInfo *) processInfo
{
// Check if the main() function was successfully called
@ -895,42 +902,16 @@ int main(int argc, char *argv[], char *env[])
return _gnu_sharedProcessInfoObject;
}
/**
* Returns an array containing the arguments supplied to start this
* process.<br />
* NB. In GNUstep, any arguments of the form --GNU-Debug=...
* are <em>not</em> included in this array ... they are part of the
* debug mechanism, and are hidden so that setting debug variables
* will not effect the normal operation of the program.<br />
* Please note, the special <code>--GNU-Debug=...</code> syntax differs from
* that which is used to specify values for the [NSUserDefaults] system.<br />
* User defaults are set on the command line by specifying the default name
* (with a leading hyphen) as one argument, and the default value as the
* following argument. The arguments used to set user defaults are
* present in the array returned by this method.
*/
- (NSArray *) arguments
{
return _gnu_arguments;
}
/**
* Returns a dictionary giving the environment variables which were
* provided for the process to use.
*/
- (NSDictionary *) environment
{
return _gnu_environment;
}
/**
* Returns a string which may be used as a globally unique identifier.<br />
* The string contains the host name, the process ID, a timestamp and a
* counter.<br />
* The first three values identify the process in which the string is
* generated, while the fourth ensures that multiple strings generated
* within the same process are unique.
*/
- (NSString *) globallyUniqueString
{
static unsigned long counter = 0;
@ -958,9 +939,6 @@ int main(int argc, char *argv[], char *env[])
host, pid, start, count];
}
/**
* Returns the name of the machine on which this process is running.
*/
- (NSString *) hostName
{
if (!_gnu_hostName)
@ -970,152 +948,138 @@ int main(int argc, char *argv[], char *env[])
return _gnu_hostName;
}
/**
* Return a number representing the operating system type.<br />
* The known types are listed in the header file, but not all of the
* listed types are actually implemented ... some are present for
* MacOS-X compatibility only.<br />
* <list>
* <item>NSWindowsNTOperatingSystem - used for windows NT, 2000, XP</item>
* <item>NSWindows95OperatingSystem - probably never to be implemented</item>
* <item>NSSolarisOperatingSystem - not yet recognised</item>
* <item>NSHPUXOperatingSystem - not implemented</item>
* <item>NSMACHOperatingSystem - perhaps the HURD in future?</item>
* <item>NSSunOSOperatingSystem - probably never to be implemented</item>
* <item>NSOSF1OperatingSystem - probably never to be implemented</item>
* <item>NSGNULinuxOperatingSystem - the GNUstep 'standard'</item>
* <item>NSBSDOperatingSystem - BSD derived operating systems</item>
* <item>NSCygwinOperatingSystem - cygwin unix-like environment</item>
* </list>
*/
- (unsigned int) operatingSystem
static void determineOperatingSystem()
{
static unsigned int os = 0;
if (os == 0)
if (_operatingSystem == 0)
{
NSString *n = [self operatingSystemName];
NSString *os = [NSBundle _gnustep_target_os];
if ([n isEqualToString: @"NSGNULinuxOperatingSystem"] == YES)
{
os = NSGNULinuxOperatingSystem;
}
else if ([n isEqualToString: @"NSWindowsNTOperatingSystem"] == YES)
{
os = NSWindowsNTOperatingSystem;
}
else if ([n isEqualToString: @"NSWindows95OperatingSystem"] == YES)
{
os = NSWindows95OperatingSystem;
}
else if ([n isEqualToString: @"NSCygwinOperatingSystem"] == YES)
{
os = NSCygwinOperatingSystem;
}
else if ([n isEqualToString: @"NSBSDOperatingSystem"] == YES)
{
os = NSBSDOperatingSystem;
}
else if ([n isEqualToString: @"NSBeOperatingSystem"] == YES)
{
os = NSBeOperatingSystem;
}
else if ([n isEqualToString: @"NSMACHOperatingSystem"] == YES)
{
os = NSMACHOperatingSystem;
}
else if ([n isEqualToString: @"NSSolarisOperatingSystem"] == YES)
{
os = NSSolarisOperatingSystem;
}
else if ([n isEqualToString: @"NSHPUXOperatingSystem"] == YES)
{
os = NSHPUXOperatingSystem;
}
else if ([n isEqualToString: @"NSSunOSOperatingSystem"] == YES)
{
os = NSSunOSOperatingSystem;
}
else if ([n isEqualToString: @"NSOSF1OperatingSystem"] == YES)
{
os = NSOSF1OperatingSystem;
}
else
{
NSLog(@"Unable to determine O/S ... assuming GNU/Linux");
os = NSGNULinuxOperatingSystem;
}
}
return os;
}
#if defined(__MINGW32__)
OSVERSIONINFOW osver;
/**
* Returns the name of the operating system in use.
*/
- (NSString*) operatingSystemName
{
static NSString *os = nil;
osver.dwOSVersionInfoSize = sizeof(osver);
GetVersionExW (&osver);
/* Hmm, we could use this to determine operating system version, but
* that would not distinguish between mingw and cygwin, so we just
* use the information from NSBundle and only get the version info
* here.
*/
_operatingSystemVersion = [[NSString alloc] initWithFormat: @"%d.%d",
osver.dwMajorVersion, osver.dwMinorVersion];
#else
#if defined(HAVE_SYS_UTSNAME_H)
struct utsname uts;
if (os == nil)
{
os = [NSBundle _gnustep_target_os];
/* The system supports uname, so we can use it rather than the
* value determined at configure/compile time.
* That's good if the binary is running on a system other than
* the one it was built for (rare, but can happen).
*/
if (uname(&uts) == 0)
{
os = [NSString stringWithCString: uts.sysname encoding: [NSString defaultCStringEncoding]];
_operatingSystemVersion = [[NSString alloc]
initWithCString: uts.version
encoding: [NSString defaultCStringEncoding]];
}
#endif /* HAVE_SYS_UTSNAME_H */
#endif /* __MINGW32__ */
if (_operatingSystemVersion == nil)
{
NSWarnFLog(@"Unable to determine system version, using 0.0");
_operatingSystemVersion = @"0.0";
}
if ([os hasPrefix: @"linux"] == YES)
{
os = @"NSGNULinuxOperatingSystem";
_operatingSystemName = @"GSGNULinuxOperatingSystem";
_operatingSystem = GSGNULinuxOperatingSystem;
}
else if ([os hasPrefix: @"mingw"] == YES)
{
os = @"NSWindowsNTOperatingSystem";
_operatingSystemName = @"NSWindowsNTOperatingSystem";
_operatingSystem = NSWindowsNTOperatingSystem;
}
else if ([os isEqualToString: @"cygwin"] == YES)
{
os = @"NSCygwinOperatingSystem";
_operatingSystemName = @"GSCygwinOperatingSystem";
_operatingSystem = GSCygwinOperatingSystem;
}
else if ([os hasPrefix: @"bsd"] == YES
|| [os hasPrefix: @"freebsd"] == YES
|| [os hasPrefix: @"netbsd"] == YES
|| [os hasPrefix: @"openbsd"] == YES)
{
os = @"NSBSDOperatingSystem";
_operatingSystemName = @"GSBSDOperatingSystem";
_operatingSystem = GSBSDOperatingSystem;
}
else if ([os hasPrefix: @"beos"] == YES)
{
os = @"NSBeOperatingSystem";
_operatingSystemName = @"GSBeOperatingSystem";
_operatingSystem = GSBeOperatingSystem;
}
else if ([os hasPrefix: @"darwin"] == YES)
{
os = @"NSMACHOperatingSystem";
_operatingSystemName = @"NSMACHOperatingSystem";
_operatingSystem = NSMACHOperatingSystem;
}
else if ([os hasPrefix: @"solaris"] == YES)
{
os = @"NSSolarisOperatingSystem";
_operatingSystemName = @"NSSolarisOperatingSystem";
_operatingSystem = NSSolarisOperatingSystem;
}
else if ([os hasPrefix: @"hpux"] == YES)
{
os = @"NSHPUXOperatingSystem";
_operatingSystemName = @"NSHPUXOperatingSystem";
_operatingSystem = NSHPUXOperatingSystem;
}
else if ([os hasPrefix: @"sunos"] == YES)
{
os = @"NSSunOSOperatingSystem";
_operatingSystemName = @"NSSunOSOperatingSystem";
_operatingSystem = NSSunOSOperatingSystem;
}
else if ([os hasPrefix: @"osf"] == YES)
{
os = @"NSOSF10OperatingSystem";
_operatingSystemName = @"NSOSF1OperatingSystem";
_operatingSystem = NSOSF1OperatingSystem;
}
else
{
NSLog(@"Unable to determine O/S ... assuming GNU/Linux");
os = @"NSGNULinuxOperatingSystem";
NSWarnFLog(@"Unable to determine O/S ... assuming GNU/Linux");
_operatingSystemName = @"GSGNULinuxOperatingSystem";
_operatingSystem = GSGNULinuxOperatingSystem;
}
}
return os;
}
/**
* Returns the process identifier number which identifies this process
* on this machine.
*/
- (unsigned int) operatingSystem
{
if (_operatingSystem == 0)
{
determineOperatingSystem();
}
return _operatingSystem;
}
- (NSString*) operatingSystemName
{
if (_operatingSystemName == 0)
{
determineOperatingSystem();
}
return _operatingSystemName;
}
- (NSString *) operatingSystemVersionString
{
if (_operatingSystemVersion == nil)
{
determineOperatingSystem();
}
return _operatingSystemVersion;
}
- (int) processIdentifier
{
int pid;
@ -1128,19 +1092,11 @@ int main(int argc, char *argv[], char *env[])
return pid;
}
/**
* Returns the process name for this process. This may have been set using
* the -setProcessName: method, or may be the default process name (the
* file name of the binary being executed).
*/
- (NSString *) processName
{
return _gnu_processName;
}
/**
* Change the name of the current process to newName.
*/
- (void) setProcessName: (NSString *)newName
{
if (newName && [newName length]) {
@ -1152,21 +1108,10 @@ int main(int argc, char *argv[], char *env[])
@end
/**
* Provides GNUstep-specific methods for controlled debug logging (a GNUstep
* facility) and an internal/developer-related method.
*/
@implementation NSProcessInfo (GNUstep)
static BOOL debugTemporarilyDisabled = NO;
/**
* Fallback method. The developer must call this method to initialize
* the NSProcessInfo system if none of the system-specific hacks to
* auto-initialize it are working.<br />
* It should also be safe to call this method to override the effects
* of the automatic initialisation.
*/
+ (void) initializeWithArguments: (char**)argv
count: (int)argc
environment: (char**)env
@ -1177,11 +1122,6 @@ static BOOL debugTemporarilyDisabled = NO;
[gnustep_global_lock unlock];
}
/**
* Returns a indication of whether debug logging is enabled.
* This returns YES unless a call to -setDebugLoggingEnabled: has
* been used to turn logging off.
*/
- (BOOL) debugLoggingEnabled
{
if (debugTemporarilyDisabled == YES)
@ -1194,23 +1134,11 @@ static BOOL debugTemporarilyDisabled = NO;
}
}
/**
* This method returns a set of debug levels set using the
* --GNU-Debug=... command line option and/or the GNU-Debug
* user default.<br />
* You can modify this set to change the debug logging under
* your programs control ... but such modifications are not
* thread-safe.
*/
- (NSMutableSet*) debugSet
{
return _debug_set;
}
/**
* This method permits you to turn all debug logging on or off
* without modifying the set of debug levels in use.
*/
- (void) setDebugLoggingEnabled: (BOOL)flag
{
if (flag == NO)
@ -1223,11 +1151,6 @@ static BOOL debugTemporarilyDisabled = NO;
}
}
/**
* Set the file to which NSLog output should be directed.<br />
* Returns YES on success, NO on failure.<br />
* By default logging goes to standard error.
*/
- (BOOL) setLogFile: (NSString*)path
{
extern int _NSLogDescriptor;
@ -1251,12 +1174,6 @@ static BOOL debugTemporarilyDisabled = NO;
}
@end
/**
* Function for rapid testing to see if a debug level is set.<br />
* This is used by the debugging macros.<br />
* If debug logging has been turned off, this returns NO even if
* the specified level exists in the set of debug levels.
*/
BOOL GSDebugSet(NSString *level)
{
static IMP debugImp = 0;
@ -1282,7 +1199,9 @@ BOOL GSDebugSet(NSString *level)
return YES;
}
/**
* Internal function for GNUstep base library
*/
BOOL
GSEnvironmentFlag(const char *name, BOOL def)
{
@ -1312,6 +1231,7 @@ GSEnvironmentFlag(const char *name, BOOL def)
}
/**
* Internal function for GNUstep base library.
* Used by NSException uncaught exception handler - must not call any
* methods/functions which might cause a recursive exception.
*/

View file

@ -23,24 +23,25 @@ int main(int argc, char *argv[])
NSString* aKey;
NSEnumerator* enumerator;
printf("Host name: %s\n",[[pi hostName] cString]);
printf("Host name: %s\n",[[pi hostName] UTF8String]);
printf("Operating system: %d\n",[pi operatingSystem]);
printf("Operating system name: %s\n",[[pi operatingSystemName] cString]);
printf("Process Name: %s\n",[[pi processName] cString]);
printf("Globally Unique String: %s\n",[[pi globallyUniqueString] cString]);
printf("Operating system name: %s\n",[[pi operatingSystemName] UTF8String]);
printf("Operating system version: %s\n",[[pi operatingSystemVersionString] UTF8String]);
printf("Process Name: %s\n",[[pi processName] UTF8String]);
printf("Globally Unique String: %s\n",[[pi globallyUniqueString] UTF8String]);
printf("\nProcess arguments\n");
printf("%d argument(s)\n", [[pi arguments] count]);
enumerator = [[pi arguments] objectEnumerator];
while ((aString = [enumerator nextObject]))
printf("-->%s\n",[aString cString]);
printf("-->%s\n",[aString UTF8String]);
printf("\nProcess environment\n");
printf("%d environment variables(s)\n", [[pi environment] count]);
enumerator = [[pi environment] keyEnumerator];
while ((aKey = [enumerator nextObject]))
printf("++>%s=%s\n",[aKey cString],[[[pi environment]
objectForKey:aKey] cString]);
printf("++>%s=%s\n",[aKey UTF8String],[[[pi environment]
objectForKey:aKey] UTF8String]);
[arp release];
exit(0);

View file

@ -6,10 +6,10 @@ GCC_VERSION=2.9.5
# The version number of this release.
MAJOR_VERSION=1
MINOR_VERSION=13
MINOR_VERSION=14
SUBMINOR_VERSION=0
# numeric value should match above
VERSION_NUMBER=113.0
VERSION_NUMBER=114.0
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
VERSION=${GNUSTEP_BASE_VERSION}

435
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -1101,6 +1101,11 @@ else
AC_MSG_RESULT(no)
fi
#--------------------------------------------------------------------
# Check for uname header used by NSProcessInfo.m
#--------------------------------------------------------------------
AC_CHECK_HEADERS(sys/utsname.h)
#--------------------------------------------------------------------
# Defines HAVE_PROCFS if the kernel supports the /proc filesystem.
# Needed by NSProcessInfo.m