Mercurial > hg-old > index.cgi
comparison m4/sleep.m4 @ 267:bec6d2480f08 2.6
Added add'l generated files for release
author | lost |
---|---|
date | Tue, 22 Dec 2009 05:33:32 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
266:5f25e7afac21 | 267:bec6d2480f08 |
---|---|
1 # sleep.m4 serial 2 | |
2 dnl Copyright (C) 2007-2008 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 AC_DEFUN([gl_FUNC_SLEEP], | |
8 [ | |
9 AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) | |
10 dnl We expect to see the declaration of sleep() in a header file. | |
11 dnl Older versions of mingw have a sleep() function that is an alias to | |
12 dnl _sleep() in MSVCRT. It has a different signature than POSIX sleep(): | |
13 dnl it takes the number of milliseconds as argument and returns void. | |
14 dnl mingw does not declare this function. | |
15 AC_CHECK_DECLS([sleep], , , [#include <unistd.h>]) | |
16 if test $ac_cv_have_decl_sleep != yes; then | |
17 HAVE_SLEEP=0 | |
18 AC_LIBOBJ([sleep]) | |
19 gl_PREREQ_SLEEP | |
20 fi | |
21 ]) | |
22 | |
23 # Prerequisites of lib/sleep.c. | |
24 AC_DEFUN([gl_PREREQ_SLEEP], [:]) |