summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-01 22:28:20 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-01 22:28:20 +0200
commit8531dc66e8da1cb4d944d5b447f6f05e8c91401f (patch)
treea78bea678f658be35640c6e3beaa3f28740691f2
parent7866b87958cf0c2f3312f2c3d7fb8d6eed28b512 (diff)
downloadvim-git-8531dc66e8da1cb4d944d5b447f6f05e8c91401f.tar.gz
patch 8.1.1616: build failure with gcc on Amigav8.1.1616
Problem: Build failure with gcc on Amiga. Solution: Add missing header includes. (Ola Söder, closes #4603)
-rw-r--r--src/os_amiga.h4
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/os_amiga.h b/src/os_amiga.h
index 336cbdbaf..718241dd7 100644
--- 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
diff --git a/src/version.c b/src/version.c
index ec541b467..d05b82e42 100644
--- 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,