# HG changeset patch # User Bram Moolenaar # Date 1624456807 -7200 # Node ID b371ff5c53b242e3d87f37c975c510d216f2cd9e # Parent 0260eff5e282254e243bad4ef908a0fff1a5fbe4 patch 8.2.3038: Amiga built-in version string doesn't include build date Commit: https://github.com/vim/vim/commit/cc6504098605f894b557109b618e88913a89914b Author: ola.soder@axis.com Date: Wed Jun 23 15:52:46 2021 +0200 patch 8.2.3038: Amiga built-in version string doesn't include build date Problem: Amiga built-in version string doesn't include build date. Solution: Add the build date if available. (Ola S?der, closes https://github.com/vim/vim/issues/8437) diff --git a/src/os_amiga.c b/src/os_amiga.c --- a/src/os_amiga.c +++ b/src/os_amiga.c @@ -116,6 +116,9 @@ static char version[] __attribute__((use # ifdef PATCHLEVEL "." PATCHLEVEL # endif +# ifdef BUILDDATE + " (" BUILDDATE ")" +# endif ; #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3038, +/**/ 3037, /**/ 3036,