diff options
| -rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 71a899f5f40..452aa0838f1 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -5907,13 +5907,15 @@ pthread_sigmask strsignal setitimer \ | |||
| 5907 | sendto recvfrom getsockname getifaddrs freeifaddrs \ | 5907 | sendto recvfrom getsockname getifaddrs freeifaddrs \ |
| 5908 | gai_strerror sync \ | 5908 | gai_strerror sync \ |
| 5909 | endpwent getgrent endgrent \ | 5909 | endpwent getgrent endgrent \ |
| 5910 | renameat2 \ | ||
| 5911 | cfmakeraw cfsetspeed __executable_start log2 pthread_setname_np \ | 5910 | cfmakeraw cfsetspeed __executable_start log2 pthread_setname_np \ |
| 5912 | pthread_set_name_np]) | 5911 | pthread_set_name_np]) |
| 5913 | 5912 | ||
| 5914 | # getpwent is not present in older versions of Android. (bug#65319) | 5913 | # getpwent is not present in older versions of Android. (bug#65319) |
| 5915 | gl_CHECK_FUNCS_ANDROID([getpwent], [[#include <pwd.h>]]) | 5914 | gl_CHECK_FUNCS_ANDROID([getpwent], [[#include <pwd.h>]]) |
| 5916 | 5915 | ||
| 5916 | # renameat2 is not present in older versions of Android. | ||
| 5917 | gl_CHECK_FUNCS_ANDROID([renameat2], [[#include <stdio.h>]]) | ||
| 5918 | |||
| 5917 | if test "$ac_cv_func_cfmakeraw" != "yes"; then | 5919 | if test "$ac_cv_func_cfmakeraw" != "yes"; then |
| 5918 | # On some systems (Android), cfmakeraw is inline, so AC_CHECK_FUNCS | 5920 | # On some systems (Android), cfmakeraw is inline, so AC_CHECK_FUNCS |
| 5919 | # cannot find it. Check if some code including termios.h and using | 5921 | # cannot find it. Check if some code including termios.h and using |