comparison src/os_unixx.h @ 10460:7fd589f46801 v8.0.0123

commit https://github.com/vim/vim/commit/a899e6ecc4523c7e411eaf6fbaa4197d70f6f39e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 3 16:40:51 2016 +0100 patch 8.0.0123 Problem: Modern Sun compilers define "__sun" instead of "sun". Solution: Use __sun. (closes https://github.com/vim/vim/issues/1296)
author Christian Brabandt <cb@256bit.org>
date Sat, 03 Dec 2016 16:45:04 +0100
parents 4aead6a9b7a9
children 82c2c450dad0
comparison
equal deleted inserted replaced
10459:691b74dcfb68 10460:7fd589f46801
15 */ 15 */
16 #if defined(HAVE_SIGSET) && !defined(signal) 16 #if defined(HAVE_SIGSET) && !defined(signal)
17 # define signal sigset 17 # define signal sigset
18 #endif 18 #endif
19 19
20 /* sun's sys/ioctl.h redefines symbols from termio world */ 20 /* Sun's sys/ioctl.h redefines symbols from termio world */
21 #if defined(HAVE_SYS_IOCTL_H) && !defined(sun) 21 #if defined(HAVE_SYS_IOCTL_H) && !defined(SUN_SYSTEM)
22 # include <sys/ioctl.h> 22 # include <sys/ioctl.h>
23 #endif 23 #endif
24 24
25 #ifndef USE_SYSTEM /* use fork/exec to start the shell */ 25 #ifndef USE_SYSTEM /* use fork/exec to start the shell */
26 26