summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-01-31 05:06:51 +0000
committerJim Meyering <jim@meyering.net>1999-01-31 05:06:51 +0000
commitcf7f6af480e871c687a3d2e09aa6bbb758a55348 (patch)
tree3d2c5f641f2ccc50f37414ed9ffc2a883c3ddbda
parent4f1bb201e360e5e3082b1045ad56c3eb14453471 (diff)
downloadgnulib-cf7f6af480e871c687a3d2e09aa6bbb758a55348.tar.gz
Make this a wrapper around the official AM_FUNC_MKTIME
rather than my private copy, now that the official one is up to date.
-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 abdc21d604..8f7d6596d5 100644
--- a/m4/jm-mktime.m4
+++ b/m4/jm-mktime.m4
@@ -1,15 +1,15 @@
-#serial 4
+#serial 5
dnl From Jim Meyering.
-dnl A wrapper around jm_AM_FUNC_MKTIME.
+dnl A wrapper around AM_FUNC_MKTIME.
AC_DEFUN(jm_FUNC_MKTIME,
-[AC_REQUIRE([jm_AM_FUNC_MKTIME])dnl
+[AC_REQUIRE([AM_FUNC_MKTIME])dnl
dnl mktime.c uses localtime_r if it exists. Check for it.
AC_CHECK_FUNCS(localtime_r)
- if test $jm_am_cv_func_working_mktime = no; then
+ if test $am_cv_func_working_mktime = no; then
AC_DEFINE_UNQUOTED(mktime, rpl_mktime,
[Define to gnu_mktime if the replacement function should be used.])
fi