Ignore:
Timestamp:
Apr 30, 2007, 11:25:39 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/stable/mondo/src/mondoarchive/mondoarchive.c

    r1326 r1377  
    6666static void welcome_to_mondoarchive(void)
    6767{
     68    char *tmp = NULL;
     69
    6870    mr_msg(0, "Mondo Archive v%s --- http://www.mondorescue.org", PACKAGE_VERSION);
    69     mr_msg(0, "running on %s architecture", get_architecture());
     71    log_msg(0, "running %s binaries", get_architecture());
     72    tmp = get_uname_m();
     73    log_msg(0, "running on %s architecture", tmp);
     74    mr_free(tmp);
    7075    mr_msg(0, "-----------------------------------------------------------");
    7176    mr_msg(0, "NB: Mondo logs almost everything, so don't panic if you see");
Note: See TracChangeset for help on using the changeset viewer.