Use sftp_realpath if no native realpath.

This commit is contained in:
Darren Tucker 2019-11-01 15:22:32 +11:00
Родитель bb4f003ed8
Коммит 79d46de9fb
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -1783,6 +1783,7 @@ AC_CHECK_FUNCS([ \
raise \ raise \
readpassphrase \ readpassphrase \
reallocarray \ reallocarray \
realpath \
recvmsg \ recvmsg \
recallocarray \ recallocarray \
rresvport_af \ rresvport_af \

Просмотреть файл

@ -182,4 +182,8 @@ int flock(int, int);
struct tm *localtime_r(const time_t *, struct tm *); struct tm *localtime_r(const time_t *, struct tm *);
#endif #endif
#ifndef HAVE_REALPATH
#define realpath(x, y) (sftp_realpath((x), (y))
#endif
#endif /* _BSD_MISC_H */ #endif /* _BSD_MISC_H */