From: Jim Meyering Date: Sat, 1 May 2004 16:38:12 +0000 (+0000) Subject: Remove file. This is now part of mktime.m4. X-Git-Tag: v5.3.0~1638 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8d4ea07eb8b9bd539f604183641a0f9281cbac96;p=thirdparty%2Fcoreutils.git Remove file. This is now part of mktime.m4. --- diff --git a/m4/jm-mktime.m4 b/m4/jm-mktime.m4 deleted file mode 100644 index 0c406101f8..0000000000 --- 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 -])