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:
Jeremy Evans 2019-07-01 15:33:13 -07:00
Родитель f53d7e4bfd
Коммит 142617c8e1
1 изменённых файлов: 5 добавлений и 0 удалений

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>