diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-06 13:07:38 (GMT) | 
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-06 13:07:38 (GMT) | 
| commit | 0c84699237879a40d13fafbe6f92bff5caa60c44 (patch) | |
| tree | e12482ac07726ff02a63e4a31efe498b3c4e4cc1 /unix/tclUnixInit.c | |
| parent | 7d602745337ea00ec3bd5cbb4efcd1c0e3379fbb (diff) | |
| parent | bf94a594046e4aad39f6eeafddd452bf10ec6aaa (diff) | |
| download | tcl-0c84699237879a40d13fafbe6f92bff5caa60c44.zip tcl-0c84699237879a40d13fafbe6f92bff5caa60c44.tar.gz tcl-0c84699237879a40d13fafbe6f92bff5caa60c44.tar.bz2 | |
On Cygwin, use win32 API in stead of uname() to determine the tcl_platform variables
Diffstat (limited to 'unix/tclUnixInit.c')
| -rw-r--r-- | unix/tclUnixInit.c | 71 | 
1 files changed, 69 insertions, 2 deletions
| diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index bc1b0e7..f07b123 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -31,6 +31,51 @@  #	include <dlfcn.h>  #   endif  #endif + +#ifdef __CYGWIN__ +DLLIMPORT extern __stdcall unsigned char GetVersionExA(void *); +DLLIMPORT extern __stdcall void GetSystemInfo(void *); + +#define NUMPLATFORMS 4 +static const char *const platforms[NUMPLATFORMS] = { +    "Win32s", "Windows 95", "Windows NT", "Windows CE" +}; + +#define NUMPROCESSORS 11 +static const char *const  processors[NUMPROCESSORS] = { +    "intel", "mips", "alpha", "ppc", "shx", "arm", "ia64", "alpha64", "msil", +    "amd64", "ia32_on_win64" +}; + +typedef struct _SYSTEM_INFO { +  union { +    DWORD  dwOemId; +    struct { +      int wProcessorArchitecture; +      int wReserved; +    }; +  }; +  DWORD     dwPageSize; +  void *lpMinimumApplicationAddress; +  void *lpMaximumApplicationAddress; +  void *dwActiveProcessorMask; +  DWORD     dwNumberOfProcessors; +  DWORD     dwProcessorType; +  DWORD     dwAllocationGranularity; +  int      wProcessorLevel; +  int      wProcessorRevision; +} SYSTEM_INFO; + +typedef struct _OSVERSIONINFOA { +  DWORD dwOSVersionInfoSize; +  DWORD dwMajorVersion; +  DWORD dwMinorVersion; +  DWORD dwBuildNumber; +  DWORD dwPlatformId; +  char szCSDVersion[128]; +} OSVERSIONINFOA; +#endif +  #ifdef HAVE_COREFOUNDATION  #include <CoreFoundation/CoreFoundation.h>  #endif @@ -700,7 +745,11 @@ void  TclpSetVariables(      Tcl_Interp *interp)  { -#ifndef NO_UNAME +#ifdef __CYGWIN__ +    SYSTEM_INFO sysInfo; +    OSVERSIONINFOA osInfo; +    char buffer[TCL_INTEGER_SPACE * 2]; +#elif !defined(NO_UNAME)      struct utsname name;  #endif      int unameOK; @@ -809,7 +858,25 @@ TclpSetVariables(  #endif      unameOK = 0; -#ifndef NO_UNAME +#ifdef __CYGWIN__ +	unameOK = 1; +    osInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFOA); +    GetVersionExA(&osInfo); +    GetSystemInfo(&sysInfo); + +    if (osInfo.dwPlatformId < NUMPLATFORMS) { +	Tcl_SetVar2(interp, "tcl_platform", "os", +		platforms[osInfo.dwPlatformId], TCL_GLOBAL_ONLY); +    } +    sprintf(buffer, "%d.%d", osInfo.dwMajorVersion, osInfo.dwMinorVersion); +    Tcl_SetVar2(interp, "tcl_platform", "osVersion", buffer, TCL_GLOBAL_ONLY); +    if (sysInfo.wProcessorArchitecture < NUMPROCESSORS) { +	Tcl_SetVar2(interp, "tcl_platform", "machine", +		processors[sysInfo.wProcessorArchitecture], +		TCL_GLOBAL_ONLY); +    } + +#elif !defined NO_UNAME      if (uname(&name) >= 0) {  	const char *native; | 
