Diff for /imach/src/imach.c between versions 1.175 and 1.176

version 1.175, 2015/01/03 16:33:42 version 1.176, 2015/01/03 16:45:04
Line 1 Line 1
 /* $Id$  /* $Id$
   $State$    $State$
   $Log$    $Log$
     Revision 1.176  2015/01/03 16:45:04  brouard
     *** empty log message ***
   
   Revision 1.175  2015/01/03 16:33:42  brouard    Revision 1.175  2015/01/03 16:33:42  brouard
   *** empty log message ***    *** empty log message ***
   
Line 5506  void syscompilerinfo() Line 5509  void syscompilerinfo()
    /* #include "syscompilerinfo.h"*/     /* #include "syscompilerinfo.h"*/
 #if defined(__GNUC__)   #if defined(__GNUC__) 
 #include <gnu/libc-version.h>  /* Only on gnu */  #include <gnu/libc-version.h>  /* Only on gnu */
   struct utsname sysInfo;
 #endif  #endif
   
 #include <stdint.h>  #include <stdint.h>
Line 5574  void syscompilerinfo() Line 5578  void syscompilerinfo()
    printf(" wtf-bit"); fprintf(ficlog," wtf-bit");/* wtf */     printf(" wtf-bit"); fprintf(ficlog," wtf-bit");/* wtf */
 #endif  #endif
   
 /* struct utsname sysInfo;  
   
    if (uname(&sysInfo) != -1) {  
      printf(" %s %s %s %s %s\n",sysInfo.sysname, sysInfo.nodename, sysInfo.release, sysInfo.version, sysInfo.machine);  
      fprintf(ficlog," %s %s %s %s %s\n ",sysInfo.sysname, sysInfo.nodename, sysInfo.release, sysInfo.version, sysInfo.machine);  
    }  
    else  
       perror("uname() error");  
           */  
 #if defined(__GNUC__)  #if defined(__GNUC__)
 # if defined(__GNUC_PATCHLEVEL__)  # if defined(__GNUC_PATCHLEVEL__)
 #  define __GNUC_VERSION__ (__GNUC__ * 10000 \  #  define __GNUC_VERSION__ (__GNUC__ * 10000 \
Line 5594  void syscompilerinfo() Line 5589  void syscompilerinfo()
 # endif  # endif
    printf(" using GNU C version %d.\n", __GNUC_VERSION__);     printf(" using GNU C version %d.\n", __GNUC_VERSION__);
    fprintf(ficlog, " using GNU C version %d.\n", __GNUC_VERSION__);     fprintf(ficlog, " using GNU C version %d.\n", __GNUC_VERSION__);
   
      if (uname(&sysInfo) != -1) {
        printf("Running on: %s %s %s %s %s\n",sysInfo.sysname, sysInfo.nodename, sysInfo.release, sysInfo.version, sysInfo.machine);
        fprintf(ficlog,"Running on: %s %s %s %s %s\n ",sysInfo.sysname, sysInfo.nodename, sysInfo.release, sysInfo.version, sysInfo.machine);
      }
      else
         perror("uname() error");
    printf("GNU libc version: %s\n", gnu_get_libc_version());      printf("GNU libc version: %s\n", gnu_get_libc_version()); 
    fprintf(ficlog,"GNU libc version: %s\n", gnu_get_libc_version());      fprintf(ficlog,"GNU libc version: %s\n", gnu_get_libc_version()); 
   
Line 5603  void syscompilerinfo() Line 5605  void syscompilerinfo()
    //   {     //   {
 #if defined(_MSC_VER)  #if defined(_MSC_VER)
    if (IsWow64()){     if (IsWow64()){
            printf("The program (probably compile for 32bit) is running under WOW64 (64bit) emulation.\n");             printf("The program (probably compiled for 32bit) is running under WOW64 (64bit) emulation.\n");
            fprintf(ficlog, "The program (ie 32bit) is running under WOW64 (64bit) emulation.\n");             fprintf(ficlog, "The program (probably compiled for 32bit) is running under WOW64 (64bit) emulation.\n");
    }     }
    else{     else{
            printf("The process is not running under WOW64 (i.e probably on a 64bits windows).\n");             printf("The process is not running under WOW64 (i.e probably on a 64bit Windows).\n");
            frintf(ficlog,"The programm is not running under WOW64 (i.e probably on a 64bits windows).\n");             frintf(ficlog,"The programm is not running under WOW64 (i.e probably on a 64bit Windows).\n");
    }     }
    //      printf("\nPress Enter to continue...");     //      printf("\nPress Enter to continue...");
    //      getchar();     //      getchar();

Removed from v.1.175  
changed lines
  Added in v.1.176


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>