From 4874dfc849abe4a01236d1cdcb1796d15cb38d7f Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sun, 14 Oct 2001 20:08:08 +0000 Subject: [PATCH] Do not use an absolute path for when checking for return type of usleep. Thanks to Michael Carmack. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 590b33a10..756a40735 100644 --- a/configure.in +++ b/configure.in @@ -272,7 +272,7 @@ GUILE_FUNC_DECLARED(usleep, unistd.h) ### we'd like to return it; otherwise, we'll fake it. AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type, [AC_EGREP_HEADER(changequote(<, >)changequote([, ]), - /usr/include/unistd.h, + unistd.h, [guile_cv_func_usleep_return_type=void], [guile_cv_func_usleep_return_type=int])]) case "$guile_cv_func_usleep_return_type" in