summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2019-05-27 19:24:00 -0500
committerGravatar Nikias Bassen2019-05-27 19:24:00 -0500
commit60109fdef47dfe0badfb558a6a2105e8fb23660a (patch)
tree0e45729d1f64c8ac452ea0e3a100c7a1cb9f99b0
parent7b007832f6e6106f2fb2eba896efc69e38dfe374 (diff)
downloadlibusbmuxd-60109fdef47dfe0badfb558a6a2105e8fb23660a.tar.gz
libusbmuxd-60109fdef47dfe0badfb558a6a2105e8fb23660a.tar.bz2
configure: Add missing check for pselect
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index cd5879a..d5f0497 100644
--- a/configure.ac
+++ b/configure.ac
@@ -87,6 +87,7 @@ case ${host_os} in
AC_CHECK_FUNC(pthread_cancel, [AC_DEFINE(HAVE_PTHREAD_CANCEL)], [
AC_CHECK_LIB(pthread, [pthread_cancel],[AC_DEFINE(HAVE_PTHREAD_CANCEL)])
])
+ AC_CHECK_FUNCS([pselect])
AC_CACHE_CHECK(for program_invocation_short_name, ac_cv_program_invocation_short_name,[
AC_TRY_LINK([extern char* program_invocation_short_name;],[return program_invocation_short_name;],
[ac_cv_program_invocation_short_name=yes],