Skip to content
Snippets Groups Projects
Commit bd1f3a7d authored by Howard Chu's avatar Howard Chu
Browse files

ITS#4674 fix poll detection

parent 393e6e5e
No related branches found
No related tags found
No related merge requests found
......@@ -950,7 +950,9 @@ dnl AC_SYS_RESTARTABLE_SYSCALLS
dnl ----------------------------------------------------------------
AC_CHECK_FUNCS( poll )
AC_CHECK_HEADERS( poll.h )
if test $ac_cv_func_poll = yes; then
AC_CHECK_HEADERS( poll.h sys/poll.h )
fi
dnl ----------------------------------------------------------------
AC_CHECK_HEADERS( sys/epoll.h )
......
......@@ -24,6 +24,9 @@
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
......@@ -220,7 +223,7 @@ LDAP_LUTIL_F( int ) getpeereid( int s, uid_t *, gid_t * );
#define NI_MAXHOST 256
#endif
#ifdef HAVE_POLL_H
#ifdef HAVE_POLL
# ifndef INFTIM
# define INFTIM (-1)
# endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment