4 dnl Check for the nanosleep function.
5 dnl If not found, use the supplied replacement.
8 AC_DEFUN([gl_FUNC_NANOSLEEP],
10 nanosleep_save_libs=$LIBS
12 # Solaris 2.5.1 needs -lposix4 to get the nanosleep function.
13 # Solaris 7 prefers the library name -lrt to the obsolescent name -lposix4.
14 AC_SEARCH_LIBS([nanosleep], [rt posix4],
15 [test "$ac_cv_search_nanosleep" = "none required" ||
16 LIB_NANOSLEEP=$ac_cv_search_nanosleep])
17 AC_SUBST([LIB_NANOSLEEP])
19 AC_CACHE_CHECK([whether nanosleep works],
20 jm_cv_func_nanosleep_works,
22 AC_REQUIRE([AC_HEADER_TIME])
23 AC_CHECK_HEADERS_ONCE(sys/time.h)
25 # if TIME_WITH_SYS_TIME
26 # include <sys/time.h>
30 # include <sys/time.h>
39 struct timespec ts_sleep, ts_remaining;
42 exit (nanosleep (&ts_sleep, &ts_remaining) == 0 ? 0 : 1);
45 jm_cv_func_nanosleep_works=yes,
46 jm_cv_func_nanosleep_works=no,
47 dnl When crosscompiling, assume the worst.
48 jm_cv_func_nanosleep_works=no)
50 if test $jm_cv_func_nanosleep_works = no; then
52 AC_DEFINE(nanosleep, rpl_nanosleep,
53 [Define to rpl_nanosleep if the replacement function should be used.])
57 LIBS=$nanosleep_save_libs
60 # Prerequisites of lib/nanosleep.c.
61 AC_DEFUN([gl_PREREQ_NANOSLEEP],
63 AC_CHECK_HEADERS_ONCE(unistd.h)