0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

patch 7.4.2229

Problem:    Startup test fails on Solaris.
Solution:   Recognize a character device. (Danek Duvall)
This commit is contained in:
Bram Moolenaar
2016-08-20 15:05:39 +02:00
parent 9e4d8215d3
commit f04507d132
5 changed files with 12 additions and 6 deletions

View File

@@ -2485,4 +2485,8 @@ typedef enum
#define FNE_INCL_BR 1 /* include [] in name */
#define FNE_CHECK_START 2 /* check name starts with valid character */
#if (defined(sun) || defined(__FreeBSD__)) && defined(S_ISCHR)
# define OPEN_CHR_FILES
#endif
#endif /* VIM__H */