fvwm2/fvwm-no-date-time.patch
Michael Vetter 03e3a48f7b - build with gcc14
- use existing openSUSE wallpaper image file
- use FvwmBacker module for background instead of external program
- do not depend on xli anymore
- modified sources
  % system.fvwm2rc
- added patches
  fix https://github.com/fvwmorg/fvwm/pull/100
  + fvwm2-gcc14.patch

OBS-URL: https://build.opensuse.org/package/show/X11:windowmanagers/fvwm2?expand=0&rev=55
2024-11-25 08:22:49 +00:00

30 lines
935 B
Diff

---
fvwm/fvwm.c | 4 ++--
fvwm/session.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
--- fvwm/fvwm.c
+++ fvwm/fvwm.c 2017-02-07 11:11:29.990180773 +0000
@@ -1295,8 +1295,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",
+ VERSION, VERSIONINFO);
Fvwm_VersionInfo = safestrdup(version_str);
sprintf(license_str,
--- fvwm/session.c
+++ fvwm/session.c 2017-02-07 11:11:29.990180773 +0000
@@ -136,7 +136,7 @@ static char *get_version_string(void)
{
/* migo (14-Mar-2001): it is better to manually update a version string
* in the stable branch, otherwise saving sessions becomes useless */
- return CatString3(VERSION, ", ", __DATE__);
+ return CatString3(VERSION, ", ", "??? ?? ????");
/* return "2.6-0"; */
}