summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-20 20:05:44 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-20 20:05:44 +0100
commit17576a1e33d71b5602cee86bf220a806c8412605 (patch)
tree6270a37a8c9f9b20fac979e5806add72d6237477
parentf7edf40448a09e04eec3bd05e043f7fea93b07c9 (diff)
patch 7.4.1144v7.4.1144
Problem: Can't build on several systems. Solution: Include float.h. (Christian Robinson, closes #570 #571)
-rw-r--r--src/ex_cmds.c4
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 11c3cf48ba..6bd7afcc45 100644
--- 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
diff --git a/src/version.c b/src/version.c
index bd2c8f6ac1..fcd86f17d1 100644
--- 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,