gh-104106: Add gcc fallback of mkfifoat/mknodat for macOS (gh-104129)

This commit is contained in:
Dong-hee Na 2023-05-05 12:27:25 +09:00 committed by GitHub
parent ce871fdc3a
commit e5b8b19d99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 4 deletions

View File

@ -0,0 +1 @@
Add gcc fallback of mkfifoat/mknodat for macOS. Patch by Dong-hee Na.

View File

@ -175,6 +175,14 @@
# define HAVE_PWRITEV_RUNTIME (pwritev != NULL)
# endif
# ifdef HAVE_MKFIFOAT
# define HAVE_MKFIFOAT_RUNTIME (mkfifoat != NULL)
# endif
# ifdef HAVE_MKNODAT
# define HAVE_MKNODAT_RUNTIME (mknodat != NULL)
# endif
#endif
#ifdef HAVE_FUTIMESAT