maint: update copyright
[gnulib.git] / m4 / usleep.m4
1 # usleep.m4 serial 3
2 dnl Copyright (C) 2009-2014 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.
6
7 dnl This macro intentionally does not check for select or nanosleep;
8 dnl both of those modules can require external libraries.
9 AC_DEFUN([gl_FUNC_USLEEP],
10 [
11   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
12   dnl usleep was required in POSIX 2001, but dropped as obsolete in
13   dnl POSIX 2008; therefore, it is not always exposed in headers.
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
16   AC_CHECK_FUNCS_ONCE([usleep])
17   AC_CHECK_TYPE([useconds_t], [],
18     [AC_DEFINE([useconds_t], [unsigned int], [Define to an unsigned 32-bit
19       type if <sys/types.h> lacks this type.])])
20   if test $ac_cv_func_usleep = no; then
21     HAVE_USLEEP=0
22   else
23     dnl POSIX allows implementations to reject arguments larger than
24     dnl 999999, but GNU guarantees it will work.
25     AC_CACHE_CHECK([whether usleep allows large arguments],
26       [gl_cv_func_usleep_works],
27       [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
28 #include <unistd.h>
29 ]], [[return !!usleep (1000000);]])],
30         [gl_cv_func_usleep_works=yes], [gl_cv_func_usleep_works=no],
31         [case "$host_os" in
32                    # Guess yes on glibc systems.
33            *-gnu*) gl_cv_func_usleep_works="guessing yes" ;;
34                    # If we don't know, assume the worst.
35            *)      gl_cv_func_usleep_works="guessing no" ;;
36          esac
37         ])])
38     case "$gl_cv_func_usleep_works" in
39       *yes) ;;
40       *)
41         REPLACE_USLEEP=1
42         ;;
43     esac
44   fi
45 ])