diff --git a/src/os_amiga.c b/src/os_amiga.c index 94355b81c7..fbe33de209 100644 --- a/src/os_amiga.c +++ b/src/os_amiga.c @@ -14,6 +14,7 @@ */ #include "vim.h" +#include "version.h" #ifdef Window # undef Window /* Amiga has its own Window definition */ @@ -108,6 +109,17 @@ int dos2 = FALSE; /* Amiga DOS 2.0x or higher */ #endif int size_set = FALSE; /* set to TRUE if window size was set */ +#ifdef __GNUC__ +static char version[] __attribute__((used)) = + "\0$VER: Vim " + VIM_VERSION_MAJOR_STR "." + VIM_VERSION_MINOR_STR +# ifdef PATCHLEVEL + "." PATCHLEVEL +# endif + ; +#endif + void win_resize_on(void) { diff --git a/src/version.c b/src/version.c index 15577e0fc1..855c0fe2ce 100644 --- a/src/version.c +++ b/src/version.c @@ -777,6 +777,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1781, /**/ 1780, /**/