changeset 7691:fd4175b669e2 v7.4.1144

commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605 Author: Bram Moolenaar <Bram@vim.org> 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)
author Christian Brabandt <cb@256bit.org>
date Wed, 20 Jan 2016 20:15:06 +0100
parents 0f193b74d989
children 2252cd6501d3
files src/ex_cmds.c src/version.c
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -14,6 +14,10 @@
 #include "vim.h"
 #include "version.h"
 
+#ifdef FEAT_FLOAT
+# include <float.h>
+#endif
+
 #ifdef FEAT_EX_EXTRA
 static int linelen __ARGS((int *has_tab));
 #endif
--- 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,