From: Peep P. <so...@us...> - 2004-06-20 14:05:05
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1490 Modified Files: main.c Log Message: No need to display date of compilation. Index: main.c =================================================================== RCS file: /cvsroot/agd/server/src/main.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- main.c 8 Jun 2004 20:44:53 -0000 1.20 +++ main.c 20 Jun 2004 14:04:56 -0000 1.21 @@ -86,10 +86,11 @@ void print_version(void) { - printf("%s on %s, compiled on %s %s\n", PACKAGE_STRING, PLATFORM, __TIME__, __DATE__); + printf("%s on %s", PACKAGE_STRING, PLATFORM); #ifdef __GNUC__ - printf("gcc %s\n", __VERSION__); + printf(", gcc %s", __VERSION__); #endif + putchar('\n'); #ifdef ARCH_README printf("Your computer architecture is not fully supported. " |