changeset 17233:e7a4d1ac0d0d v8.1.1616

patch 8.1.1616: build failure with gcc on Amiga commit https://github.com/vim/vim/commit/8531dc66e8da1cb4d944d5b447f6f05e8c91401f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 1 22:28:20 2019 +0200 patch 8.1.1616: build failure with gcc on Amiga Problem: Build failure with gcc on Amiga. Solution: Add missing header includes. (Ola S?der, closes https://github.com/vim/vim/issues/4603)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jul 2019 22:30:05 +0200
parents 45da73873ed6
children 7f61c9065eea
files src/os_amiga.h src/version.c
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/os_amiga.h
+++ b/src/os_amiga.h
@@ -88,6 +88,10 @@ typedef long off_t;
 #ifdef __GNUC__
 # include <sys/stat.h>
 # include <unistd.h>
+# include <limits.h>
+# include <errno.h>
+# include <time.h>
+# include <dirent.h>
 #endif
 
 #ifndef PROTO
--- a/src/version.c
+++ b/src/version.c
@@ -778,6 +778,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1616,
+/**/
     1615,
 /**/
     1614,