# HG changeset patch # User Bram Moolenaar # Date 1562013005 -7200 # Node ID e7a4d1ac0d0d7c0d31aa578d95480d220eb68cc6 # Parent 45da73873ed65d60f8bceeb841ee66b3a693294a patch 8.1.1616: build failure with gcc on Amiga commit https://github.com/vim/vim/commit/8531dc66e8da1cb4d944d5b447f6f05e8c91401f Author: Bram Moolenaar 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) diff --git a/src/os_amiga.h b/src/os_amiga.h --- a/src/os_amiga.h +++ b/src/os_amiga.h @@ -88,6 +88,10 @@ typedef long off_t; #ifdef __GNUC__ # include # include +# include +# include +# include +# include #endif #ifndef PROTO diff --git a/src/version.c b/src/version.c --- 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,