# HG changeset patch # User Christian Brabandt # Date 1453317306 -3600 # Node ID fd4175b669e21cff13c8d81ba9ac54d240c4d32d # Parent 0f193b74d989fe7c47577beaea5f2dc9e5217692 commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605 Author: Bram Moolenaar Date: Wed Jan 20 20:05:44 2016 +0100 patch 7.4.1144 Problem: Can't build on several systems. Solution: Include float.h. (Christian Robinson, closes https://github.com/vim/vim/issues/570 https://github.com/vim/vim/issues/571) diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -14,6 +14,10 @@ #include "vim.h" #include "version.h" +#ifdef FEAT_FLOAT +# include +#endif + #ifdef FEAT_EX_EXTRA static int linelen __ARGS((int *has_tab)); #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1144, +/**/ 1143, /**/ 1142,