mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Don't use native realpath(3) on Solaris
CI shows it does work on Solaris 11, but does not work on Solaris 10. However, until I figure out a good way to differentiate between Solaris 10 and 11, this should get CI passing on both.
This commit is contained in:
parent
f53d7e4bfd
commit
142617c8e1
1 changed files with 5 additions and 0 deletions
5
file.c
5
file.c
|
@ -146,6 +146,11 @@ int flock(int, int);
|
|||
# define UTIME_EINVAL
|
||||
#endif
|
||||
|
||||
/* Solaris 10 realpath(3) doesn't support File.realpath */
|
||||
#if defined HAVE_REALPATH && defined __sun && defined __SVR4
|
||||
#undef HAVE_REALPATH
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_REALPATH
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Reference in a new issue