Changeset 1375 in MondoRescue for branches/2.2.4/mondo/src/mondoarchive/main.c


Ignore:
Timestamp:
Apr 30, 2007, 11:18:15 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • ARCH removed from configure.in as useless
  • addition of get_uname_m (to give the underlying arch)
  • get_architecture now returns correctly the built arch used (including x86_64)
  • IA32 is defined for both i386 and x86_64. An additional vdefine X86_64 is also setup for tha later arch.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.4/mondo/src/mondoarchive/main.c

    r1319 r1375  
    153153void welcome_to_mondoarchive(void)
    154154{
     155    char *tmp = NULL;
     156
    155157    log_msg(0, "Mondo Archive v%s --- http://www.mondorescue.org",
    156158            PACKAGE_VERSION);
    157     log_msg(0, "running on %s architecture", get_architecture());
     159    log_msg(0, "running %s binaries", get_architecture());
     160    tmp = get_uname_m();
     161    log_msg(0, "running on %s architecture", tmp);
     162    mr_free(tmp);
    158163    log_msg(0,
    159164            "-----------------------------------------------------------");
Note: See TracChangeset for help on using the changeset viewer.