diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-11-04 20:35:31 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-11-04 20:35:31 +0100 |
commit | de5e2c219b99895445fb75ae3541ee69282a5846 (patch) | |
tree | 66c568296d890abef12e5d04f7e62256e28b45e1 /src/os_vms_conf.h | |
parent | 91e44a3305ef6bf2d43496c351dcff0a45c6bfb8 (diff) | |
download | vim-git-de5e2c219b99895445fb75ae3541ee69282a5846.tar.gz |
patch 8.0.0059v8.0.0059
Problem: Vim does not build on VMS systems.
Solution: Various changes for VMS. (Zoltan Arpadffy)
Diffstat (limited to 'src/os_vms_conf.h')
-rw-r--r-- | src/os_vms_conf.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/os_vms_conf.h b/src/os_vms_conf.h index 6da074b1f..5c110f206 100644 --- a/src/os_vms_conf.h +++ b/src/os_vms_conf.h @@ -141,6 +141,7 @@ #undef HAVE_SYS_POLL_H #undef HAVE_PWD_H #undef HAVE_FCHDIR +#undef HAVE_LSTAT /* Hardware specific */ #ifdef VAX @@ -148,13 +149,15 @@ #undef HAVE_USLEEP #undef HAVE_STRCASECMP #undef HAVE_STRINGS_H -#undef HAVE_SIGSETJMP +#undef HAVE_SIGSETJMP +#undef HAVE_ISNAN #else #define HAVE_GETTIMEOFDAY #define HAVE_USLEEP #define HAVE_STRCASECMP #define HAVE_STRINGS_H -#define HAVE_SIGSETJMP +#define HAVE_SIGSETJMP +#define HAVE_ISNAN #endif /* Compiler specific */ |