patch 9.1.1805: Amiga: Missing build date in version string
Commit:
https://github.com/vim/vim/commit/7d903eaccf07932b71c7445b7a592f926e6ed5e2
Author: Ola Söder <[email protected]>
Date: Sun Sep 28 17:58:44 2025 +0000
patch 9.1.1805: Amiga: Missing build date in version string
Problem: Amiga: Missing build date in version string
Solution: Set build date in CFLAGS in Makefile (Ola Söder)
closes: #18418
Signed-off-by: Ola Söder <[email protected]>
Signed-off-by: Christian Brabandt <[email protected]>
diff --git a/src/Make_ami.mak b/src/Make_ami.mak
index 839c6faa4..05b731755 100644
--- a/src/Make_ami.mak
+++ b/src/Make_ami.mak
@@ -71,6 +71,11 @@ ifdef PATCHLEVEL
CFLAGS += -DPATCHLEVEL=\"$(PATCHLEVEL)\"
endif
+# Build date used for Amiga style version string
+ifdef BUILDDATE
+CFLAGS += -DBUILDDATE=\"$(BUILDDATE)\"
+endif
+
# Common sources
SRC += \
alloc.c \
diff --git a/src/version.c b/src/version.c
index b25bb95a2..69719388d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1805,
/**/
1804,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/E1v2vvO-00HEEo-4m%40256bit.org.