summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-05-01 16:38:12 +0000
committerJim Meyering <jim@meyering.net>2004-05-01 16:38:12 +0000
commit8d4ea07eb8b9bd539f604183641a0f9281cbac96 (patch)
tree1e4cd69c4d85d210f0d865ba3aadf0e18b978049
parentfb8bb7dda7ca907dd2dd916b34d1bb3f28085f75 (diff)
downloadcoreutils-8d4ea07eb8b9bd539f604183641a0f9281cbac96.tar.xz
Remove file. This is now part of mktime.m4.
-rw-r--r--m4/jm-mktime.m416
1 files changed, 0 insertions, 16 deletions
diff --git a/m4/jm-mktime.m4 b/m4/jm-mktime.m4
deleted file mode 100644
index 0c406101f..000000000
--- a/m4/jm-mktime.m4
+++ /dev/null
@@ -1,16 +0,0 @@
-#serial 9
-
-dnl From Jim Meyering.
-dnl A wrapper around AC_FUNC_MKTIME.
-
-AC_DEFUN([gl_FUNC_MKTIME],
-[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 $ac_cv_func_working_mktime = no; then
- AC_DEFINE(mktime, rpl_mktime,
- [Define to rpl_mktime if the replacement function should be used.])
- fi
-])