- CVS to SVN changes
- spelling fixes etc. (thanks to Ben Lunt)
This commit is contained in:
parent
19ed9839b6
commit
8de57f7c03
@ -8,13 +8,13 @@ AC_CONFIG_HEADER(ltdlconf.h)
|
||||
|
||||
dnl // Put Bochs version information right here so that it gets substituted
|
||||
dnl // into all the right places.
|
||||
VERSION="2.4.6.cvs"
|
||||
VER_STRING="2.4.6.cvs"
|
||||
VERSION="2.4.6.svn"
|
||||
VER_STRING="2.4.6.svn"
|
||||
dnl // WIN_VER_STRING format is "a, b, c, d"
|
||||
dnl // c should be > 90 for pre-release of next version otherwise patch level
|
||||
dnl // d should be 0 for release and 1 for cvs version
|
||||
dnl // d should be 0 for release and 1 for svn version
|
||||
WIN_VER_STRING="2, 4, 6, 1"
|
||||
REL_STRING="Build from CVS snapshot, after release 2.4.6"
|
||||
REL_STRING="Built from SVN snapshot, after release 2.4.6"
|
||||
|
||||
changequote(<<, >>)
|
||||
changequote([, ])
|
||||
|
@ -115,9 +115,9 @@ void bx_print_header()
|
||||
bx_center_print(stdout, buffer, 72);
|
||||
#ifdef __DATE__
|
||||
#ifdef __TIME__
|
||||
sprintf(buffer, "Compiled at %s, %s\n", __DATE__, __TIME__);
|
||||
sprintf(buffer, "Compiled on %s at %s\n", __DATE__, __TIME__);
|
||||
#else
|
||||
sprintf(buffer, "Compiled at %s\n", __DATE__);
|
||||
sprintf(buffer, "Compiled on %s\n", __DATE__);
|
||||
#endif
|
||||
bx_center_print(stdout, buffer, 72);
|
||||
#endif
|
||||
@ -1028,9 +1028,9 @@ void bx_init_hardware()
|
||||
BX_INFO((" %s", REL_STRING));
|
||||
#ifdef __DATE__
|
||||
#ifdef __TIME__
|
||||
BX_INFO(("Compiled at %s, %s", __DATE__, __TIME__));
|
||||
BX_INFO(("Compiled on %s at %s", __DATE__, __TIME__));
|
||||
#else
|
||||
BX_INFO(("Compiled at %s", __DATE__));
|
||||
BX_INFO(("Compiled on %s", __DATE__));
|
||||
#endif
|
||||
#endif
|
||||
BX_INFO(("System configuration"));
|
||||
|
Loading…
Reference in New Issue
Block a user