=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/Kan/sm.c,v retrieving revision 1.20 retrieving revision 1.27 diff -u -p -r1.20 -r1.27 --- OpenXM/src/kan96xx/Kan/sm.c 2003/07/25 23:55:32 1.20 +++ OpenXM/src/kan96xx/Kan/sm.c 2005/07/03 11:08:54 1.27 @@ -1,12 +1,13 @@ -/* sm.c $OpenXM: OpenXM/src/kan96xx/Kan/sm.c,v 1.19 2003/07/17 23:37:02 takayama Exp $ */ -#define DATE "2003/07/18" -#define RELEASE "3.030718" /* This "string" must be an increasing seq.*/ +/* sm.c $OpenXM: OpenXM/src/kan96xx/Kan/sm.c,v 1.26 2005/06/15 02:22:51 takayama Exp $ */ +#define DATE "2005/06/15" +#define RELEASE "3.050615" /* This "string" must be an increasing seq.*/ /* You should write the same string in global.c VersionString for ox_sm1. Change also OxVersion in plugin/oxmisc.c if you install new openXM protocol.*/ #include +#include #include "datatype.h" #include "stackm.h" #include "extern.h" @@ -28,6 +29,7 @@ extern int StartAString; extern char *StartString; extern int Quiet; extern char *VersionString; +extern unsigned int GC_version; main(argc,argv) int argc; @@ -77,12 +79,12 @@ main(argc,argv) if (!Quiet) { fprintf(Fstack,"\n"); fprintf(Fstack,"Kan/StackMachine1"); - fprintf(Fstack," 1991 April --- 2003.\n"); + fprintf(Fstack," 1991 April --- 2004.\n"); fprintf(Fstack," Release %s (C) N. Takayama\n", RELEASE); - fprintf(Fstack,"gc 5.3 (C) Boehm, Demers, GNU MP 3.1.1 (C) Free Software Foundation,\n"); + fprintf(Fstack,"gc %d.%d-%d (C) Boehm, Demers, Xerox, SGI, HP,\nGNU MP 4.1 (C) Free Software Foundation,\n",GC_version >>16, (GC_version >> 8)&0xff,GC_version & 0xff); fprintf(Fstack,"OpenXM RFC100, 101, 103 (C) OpenXM developing team. \n"); - fprintf(Fstack,"This software may be freely distributed as is "); + fprintf(Fstack,"This software may be freely distributed "); fprintf(Fstack,"with no warranty expressed. \nSee OpenXM/Copyright/Copyright.generic\n"); fprintf(Fstack,"Info: http://www.math.kobe-u.ac.jp/KAN, kan@math.kobe-u.ac.jp. ? for help.\n"); #ifdef NOGC