diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-27 20:14:15 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-27 20:14:15 +0100 |
commit | 136f29a91dbafce424e31a4af133155f997e8f78 (patch) | |
tree | c8f62de847e195719732366ec05df2f21f74f000 /src/config.h.in | |
parent | e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7 (diff) | |
download | vim-136f29a91dbafce424e31a4af133155f997e8f78.zip |
patch 7.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.in | 9 |
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 |