comparison src/os_vms_conf.h @ 23503:49d866e9b439 v8.2.2294

patch 8.2.2294: VMS: a few remaining problems Commit: https://github.com/vim/vim/commit/82c38fe508155c11a904e6111b5bfb6adde3fb9a Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 4 10:47:26 2021 +0100 patch 8.2.2294: VMS: a few remaining problems Problem: VMS: a few remaining problems. Solution: Add VMS specific changes. Add Lua support. (Zoltan Arpadffy)
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Jan 2021 11:00:11 +0100
parents bdda90ed5f6c
children c0403cd5ca06
comparison
equal deleted inserted replaced
23502:f2f8c3848831 23503:49d866e9b439
145 #undef HAVE_SYS_STATFS_H 145 #undef HAVE_SYS_STATFS_H
146 #undef HAVE_SYS_POLL_H 146 #undef HAVE_SYS_POLL_H
147 #undef HAVE_FCHDIR 147 #undef HAVE_FCHDIR
148 #undef HAVE_LSTAT 148 #undef HAVE_LSTAT
149 #undef HAVE_STDINT_H 149 #undef HAVE_STDINT_H
150 #undef HAVE_XOS_R_H
151 150
152 // Hardware specific 151 // Hardware specific
153 #ifdef VAX 152 #ifdef VAX
154 #undef HAVE_GETTIMEOFDAY 153 #undef HAVE_GETTIMEOFDAY
155 #undef HAVE_USLEEP 154 #undef HAVE_USLEEP
156 #undef HAVE_STRCASECMP 155 #undef HAVE_STRCASECMP
157 #undef HAVE_STRINGS_H 156 #undef HAVE_STRINGS_H
158 #undef HAVE_SIGSETJMP 157 #undef HAVE_SIGSETJMP
159 #undef HAVE_ISNAN 158 #undef HAVE_ISNAN
159 #undef HAVE_XOS_R_H
160 #define HAVE_NO_LONG_LONG 160 #define HAVE_NO_LONG_LONG
161 #define VIM_SIZEOF_LONG 4 161 #define VIM_SIZEOF_LONG 4
162 #define LONG_LONG_MIN (-2147483647-1) 162 #define LONG_LONG_MIN (-2147483647-1)
163 #define LONG_LONG_MAX (2147483647) 163 #define LONG_LONG_MAX (2147483647)
164 #define ULONG_LONG_MAX (4294967295U) 164 #define ULONG_LONG_MAX (4294967295U)
165 #undef XTHREADS
166 #else // AXP and IA64 165 #else // AXP and IA64
167 #define HAVE_GETTIMEOFDAY 166 #define HAVE_GETTIMEOFDAY
168 #define HAVE_USLEEP 167 #define HAVE_USLEEP
169 #define HAVE_STRCASECMP 168 #define HAVE_STRCASECMP
170 #define HAVE_STRINGS_H 169 #define HAVE_STRINGS_H
171 #define HAVE_SIGSETJMP 170 #define HAVE_SIGSETJMP
172 #define HAVE_ISNAN 171 #define HAVE_ISNAN
172 #define HAVE_XOS_R_H
173 #define HAVE_NO_LONG_LONG 173 #define HAVE_NO_LONG_LONG
174 #define VIM_SIZEOF_LONG 8 174 #define VIM_SIZEOF_LONG 8
175 #define LONG_LONG_MIN (-9223372036854775807-1) 175 #define LONG_LONG_MIN (-9223372036854775807-1)
176 #define LONG_LONG_MAX (9223372036854775807) 176 #define LONG_LONG_MAX (9223372036854775807)
177 #define ULONG_LONG_MAX (18446744073709551615U) 177 #define ULONG_LONG_MAX (18446744073709551615U)
178 #define XTHREADS
179 #endif 178 #endif
180 179
181 // Compiler specific 180 // Compiler specific
182 #ifdef VAXC 181 #ifdef VAXC
183 #undef HAVE_SELECT 182 #undef HAVE_SELECT