From 756021f2675a436210566108259d7d956c7b9486 Mon Sep 17 00:00:00 2001 From: kanjitalk755 Date: Fri, 1 Jul 2022 10:12:34 +0900 Subject: [PATCH] append build date at the end of help --- BasiliskII/src/Unix/main_unix.cpp | 1 + BasiliskII/src/Windows/main_windows.cpp | 1 + SheepShaver/src/Unix/main_unix.cpp | 1 + SheepShaver/src/Windows/main_windows.cpp | 1 + 4 files changed, 4 insertions(+) diff --git a/BasiliskII/src/Unix/main_unix.cpp b/BasiliskII/src/Unix/main_unix.cpp index d295b7f6..9db13dd1 100755 --- a/BasiliskII/src/Unix/main_unix.cpp +++ b/BasiliskII/src/Unix/main_unix.cpp @@ -410,6 +410,7 @@ static void usage(const char *prg_name) ); LoadPrefs(NULL); // read the prefs file so PrefsPrintUsage() will print the correct default values PrefsPrintUsage(); + printf("\nBuild Date: %s\n", __DATE__); exit(0); } diff --git a/BasiliskII/src/Windows/main_windows.cpp b/BasiliskII/src/Windows/main_windows.cpp index 8266e96e..ecd64f55 100755 --- a/BasiliskII/src/Windows/main_windows.cpp +++ b/BasiliskII/src/Windows/main_windows.cpp @@ -217,6 +217,7 @@ static void usage(const char *prg_name) ); LoadPrefs(NULL); // read the prefs file so PrefsPrintUsage() will print the correct default values PrefsPrintUsage(); + printf("\nBuild Date: %s\n", __DATE__); exit(0); } diff --git a/SheepShaver/src/Unix/main_unix.cpp b/SheepShaver/src/Unix/main_unix.cpp index c39015b6..b8e728ac 100755 --- a/SheepShaver/src/Unix/main_unix.cpp +++ b/SheepShaver/src/Unix/main_unix.cpp @@ -375,6 +375,7 @@ static void usage(const char *prg_name) printf("\nUnix options:\n"); printf(" --display STRING\n X display to use\n"); PrefsPrintUsage(); + printf("\nBuild Date: %s\n", __DATE__); exit(0); } diff --git a/SheepShaver/src/Windows/main_windows.cpp b/SheepShaver/src/Windows/main_windows.cpp index aaef2831..825dbe8d 100755 --- a/SheepShaver/src/Windows/main_windows.cpp +++ b/SheepShaver/src/Windows/main_windows.cpp @@ -158,6 +158,7 @@ static void usage(const char *prg_name) printf("\nUnix options:\n"); printf(" --display STRING\n X display to use\n"); PrefsPrintUsage(); + printf("\nBuild Date: %s\n", __DATE__); exit(0); }