2 dnl Copyright (c) 2003, 2005-2007, 2009-2011 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_FUNC_POLL],
9 AC_REQUIRE([gl_POLL_H])
10 if test "$ac_cv_header_poll_h" = no; then
15 [# Check whether poll() works on special files (like /dev/null) and
16 # and ttys (like /dev/tty). On MacOS X 10.4.0 and AIX 5.3, it doesn't.
17 AC_RUN_IFELSE([AC_LANG_SOURCE([[
24 /* Try /dev/null for reading. */
25 ufd.fd = open ("/dev/null", O_RDONLY);
26 /* If /dev/null does not exist, it's not MacOS X nor AIX. */
31 if (!(poll (&ufd, 1, 0) == 1 && ufd.revents == POLLIN))
34 /* Try /dev/null for writing. */
35 ufd.fd = open ("/dev/null", O_WRONLY);
36 /* If /dev/null does not exist, it's not MacOS X nor AIX. */
41 if (!(poll (&ufd, 1, 0) == 1 && ufd.revents == POLLOUT))
44 /* Trying /dev/tty may be too environment dependent. */
47 [gl_cv_func_poll=yes],
49 [# When cross-compiling, assume that poll() works everywhere except on
50 # MacOS X or AIX, regardless of its version.
51 AC_EGREP_CPP([MacOSX], [
52 #if (defined(__APPLE__) && defined(__MACH__)) || defined(_AIX)
55 ], [gl_cv_func_poll=no], [gl_cv_func_poll=yes])])])
57 if test $gl_cv_func_poll != yes; then
58 AC_CHECK_FUNC([poll], [ac_cv_func_poll=yes], [ac_cv_func_poll=no])
59 if test $ac_cv_func_poll = no; then
65 if test $HAVE_POLL = 0 || test $REPLACE_POLL = 1; then
69 AC_DEFINE([HAVE_POLL], [1],
70 [Define to 1 if you have the 'poll' function and it works.])
74 # Prerequisites of lib/poll.c.
75 AC_DEFUN([gl_PREREQ_POLL],
77 AC_CHECK_HEADERS_ONCE([sys/ioctl.h sys/filio.h])