summaryrefslogtreecommitdiff
path: root/m4/jm-mktime.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-05-10 05:18:30 +0000
committerJim Meyering <jim@meyering.net>1999-05-10 05:18:30 +0000
commit447527eeb58576c856371c67bef174152d2e379e (patch)
tree74a52db82bc4edbd4b2cb37ffb14e132a2abafad /m4/jm-mktime.m4
parentd845b9a5a38ef9f6002a8f82a2c8c65a4cc9a379 (diff)
downloadcoreutils-447527eeb58576c856371c67bef174152d2e379e.tar.xz
Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
Diffstat (limited to 'm4/jm-mktime.m4')
-rw-r--r--m4/jm-mktime.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/jm-mktime.m4 b/m4/jm-mktime.m4
index 8f7d6596d..a680b2f1d 100644
--- a/m4/jm-mktime.m4
+++ b/m4/jm-mktime.m4
@@ -1,15 +1,15 @@
-#serial 5
+#serial 6
dnl From Jim Meyering.
-dnl A wrapper around AM_FUNC_MKTIME.
+dnl A wrapper around AC_FUNC_MKTIME.
AC_DEFUN(jm_FUNC_MKTIME,
-[AC_REQUIRE([AM_FUNC_MKTIME])dnl
+[AC_REQUIRE([AC_FUNC_MKTIME])dnl
dnl mktime.c uses localtime_r if it exists. Check for it.
AC_CHECK_FUNCS(localtime_r)
- if test $am_cv_func_working_mktime = no; then
+ if test $ac_cv_func_working_mktime = no; then
AC_DEFINE_UNQUOTED(mktime, rpl_mktime,
[Define to gnu_mktime if the replacement function should be used.])
fi