Closes #15161: add support for giving path as a fd for truncate() and pathconf().

This commit is contained in:
Georg Brandl 2012-06-24 12:55:33 +02:00
parent 8ccadaafe6
commit 306336bcda
4 changed files with 76 additions and 22 deletions

View file

@ -172,8 +172,10 @@ if _exists("_have_functions"):
_add("HAVE_FDOPENDIR", "listdir")
_add("HAVE_FEXECVE", "execve")
_set.add(stat) # fstat always works
_add("HAVE_FTRUNCATE", "truncate")
_add("HAVE_FUTIMENS", "utime")
_add("HAVE_FUTIMES", "utime")
_add("HAVE_FPATHCONF", "pathconf")
if _exists("statvfs") and _exists("fstatvfs"): # mac os x10.3
_add("HAVE_FSTATVFS", "statvfs")
supports_fd = _set