From b9be3ea72565fb691bf74e1da2be9a841dd0820b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 28 Jul 1998 13:15:58 +0000 Subject: [PATCH] Undef stat. --- m4/utimes.m4 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/m4/utimes.m4 b/m4/utimes.m4 index ddb3aeaee4..eceb7ac6d9 100644 --- a/m4/utimes.m4 +++ b/m4/utimes.m4 @@ -1,11 +1,14 @@ -#serial 1 +#serial 2 dnl Shamelessly cloned from acspecific.m4's AC_FUNC_UTIME_NULL. AC_DEFUN(jm_FUNC_UTIMES_NULL, [AC_CACHE_CHECK(whether utimes accepts a null argument, ac_cv_func_utimes_null, [rm -f conftestdata; > conftestdata -AC_TRY_RUN([#include +AC_TRY_RUN([ +/* In case stat has been redefined to rpl_stat, undef it here. */ +#undef stat +#include #include main() { struct stat s, t; -- 2.30.2