diff options
Diffstat (limited to 'm4')
-rw-r--r-- | m4/check-libc.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/m4/check-libc.m4 b/m4/check-libc.m4 index b58f0b1..54efc37 100644 --- a/m4/check-libc.m4 +++ b/m4/check-libc.m4 | |||
@@ -20,10 +20,12 @@ AM_CONDITIONAL([HAVE_TIMEGM], [test "x$ac_cv_func_timegm" = xyes]) | |||
20 | ]) | 20 | ]) |
21 | 21 | ||
22 | AC_DEFUN([CHECK_SYSCALL_COMPAT], [ | 22 | AC_DEFUN([CHECK_SYSCALL_COMPAT], [ |
23 | AC_CHECK_FUNCS([accept4 pledge poll]) | 23 | AC_CHECK_FUNCS([accept4 pipe2 pledge poll socketpair]) |
24 | AM_CONDITIONAL([HAVE_ACCEPT4], [test "x$ac_cv_func_accept4" = xyes]) | 24 | AM_CONDITIONAL([HAVE_ACCEPT4], [test "x$ac_cv_func_accept4" = xyes]) |
25 | AM_CONDITIONAL([HAVE_PIPE2], [test "x$ac_cv_func_pipe2" = xyes]) | ||
25 | AM_CONDITIONAL([HAVE_PLEDGE], [test "x$ac_cv_func_pledge" = xyes]) | 26 | AM_CONDITIONAL([HAVE_PLEDGE], [test "x$ac_cv_func_pledge" = xyes]) |
26 | AM_CONDITIONAL([HAVE_POLL], [test "x$ac_cv_func_poll" = xyes]) | 27 | AM_CONDITIONAL([HAVE_POLL], [test "x$ac_cv_func_poll" = xyes]) |
28 | AM_CONDITIONAL([HAVE_SOCKETPAIR], [test "x$ac_cv_func_socketpair" = xyes]) | ||
27 | ]) | 29 | ]) |
28 | 30 | ||
29 | AC_DEFUN([CHECK_B64_NTOP], [ | 31 | AC_DEFUN([CHECK_B64_NTOP], [ |