New module poll, from Paolo Bonzini <bonzini@gnu.org>.
[gnulib.git] / m4 / poll.m4
1 # poll.m4 serial 1
2 dnl Copyright (c) 2003 Free Software Foundation, Inc.
3 dnl This file is free software, distributed under the terms of the GNU
4 dnl General Public License.  As a special exception to the GNU General
5 dnl Public License, this file may be distributed as part of a program
6 dnl that contains a configuration script generated by Autoconf, under
7 dnl the same distribution terms as the rest of the program.
8
9 AC_DEFUN([gl_FUNC_POLL],
10 [
11   AC_CHECK_HEADERS(poll.h)
12   if test x$ac_cv_header_poll_h = xno; then
13     AC_CONFIG_LINKS([lib/poll.h:lib/poll_.h])
14   fi
15
16   AC_REPLACE_FUNCS(poll)
17   if test $ac_cv_func_poll = no; then
18     gl_PREREQ_POLL
19   fi
20 ])
21
22 # Prerequisites of lib/poll.c.
23 AC_DEFUN([gl_PREREQ_POLL],
24 [
25   AC_REQUIRE([AC_HEADER_TIME])
26   AC_CHECK_HEADERS_ONCE(sys/time.h)
27 ])