Make .h file creation more reliable.
[gnulib.git] / m4 / poll.m4
1 # poll.m4 serial 2
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 "$ac_cv_header_poll_h" = no; then
13     POLL_H=poll.h
14   else
15     POLL_H=
16   fi
17   AC_SUBST([POLL_H])
18
19   AC_REPLACE_FUNCS(poll)
20   if test $ac_cv_func_poll = no; then
21     gl_PREREQ_POLL
22   fi
23 ])
24
25 # Prerequisites of lib/poll.c.
26 AC_DEFUN([gl_PREREQ_POLL],
27 [
28   AC_REQUIRE([AC_HEADER_TIME])
29   AC_CHECK_HEADERS_ONCE(sys/time.h)
30 ])