From 90e0ab0a5d5eae066f670723cd4c20f113e664be Mon Sep 17 00:00:00 2001 From: Nils Gillmann Date: Mon, 17 Sep 2018 23:23:46 +0000 Subject: [PATCH] Remove compile time __DATE__ and __TIME__ variables from the source. Commentary: it looks like upstream rejected the request for inclusion in https://github.com/fvwmorg/fvwm/issues/67 and focuses on fvwm3 fixes. Irritating, but we have tried. This patch has been taken from a similar (but not applying as-is) patch by address@hidden for openbsd's Xenocara FVWM version. Signed-off-by: Nils Gillmann --- fvwm/fvwm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fvwm/fvwm.c b/fvwm/fvwm.c index f5317f2..3e0f183 100644 --- a/fvwm/fvwm.c +++ b/fvwm/fvwm.c @@ -1286,8 +1286,8 @@ static void setVersionInfo(void) int support_len; /* Set version information string */ - sprintf(version_str, "fvwm %s%s compiled on %s at %s", - VERSION, VERSIONINFO, __DATE__, __TIME__); + sprintf(version_str, "fvwm %s%s\n", + VERSION, VERSIONINFO); Fvwm_VersionInfo = safestrdup(version_str); sprintf(license_str, -- 2.19.0