1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 23:46:14 +00:00

Adds MaikoGitVersion to information printed with -info option

This commit is contained in:
Nick Briggs 2024-12-16 20:13:05 -08:00
parent b13a35e16e
commit 31ad2f2169

View File

@ -246,6 +246,7 @@ extern DspInterface currentdsp;
#include "sdldefs.h" /* for init_SDL */
#endif
extern const time_t MDate;
extern const char *MaikoGitVersion;
extern int nokbdflag;
extern int nomouseflag;
#ifdef DOS
@ -831,6 +832,7 @@ void print_info_lines(void) {
#endif /* RELEASE */
printf("Compiled for %s (%s) (%d bit).\n", MAIKO_OS_NAME, MAIKO_ARCH_NAME, MAIKO_ARCH_WORD_BITS);
printf("Creation date: %s", ctime(&MDate));
printf("%s\n", MaikoGitVersion);
#ifdef LPSOLVE
printf("Contains lp_solve LP solver.\n");
#endif /* LPSOLVE */