summaryrefslogtreecommitdiff
path: root/src/config.h.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-27 20:14:15 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-27 20:14:15 +0100
commit136f29a91dbafce424e31a4af133155f997e8f78 (patch)
treec8f62de847e195719732366ec05df2f21f74f000 /src/config.h.in
parente98991b8cfaf29016d14b8ec437d3dedfc0a5eb7 (diff)
downloadvim-git-136f29a91dbafce424e31a4af133155f997e8f78.tar.gz
patch 7.4.1437v7.4.1437
Problem: Old system doesn't have isinf() and NAN. (Ben Fritz) Solution: Adjust #ifdefs. Detect isnan() and isinf() functions with configure. Use a replacement when missing. (Kazunobu Kuriyama)
Diffstat (limited to 'src/config.h.in')
-rw-r--r--src/config.h.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in
index dc0e9b2ad..f8475a14f 100644
--- a/src/config.h.in
+++ b/src/config.h.in
@@ -460,3 +460,12 @@
/* Define if GTK+ GUI is to be linked against GTK+ 3 */
#undef USE_GTK3
+
+/* Define if we have isinf() */
+#undef HAVE_ISINF
+
+/* Define if we have isnan() */
+#undef HAVE_ISNAN
+
+/* Define to inline symbol or empty */
+#undef inline