Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
[gnulib.git] / m4 / strptime.m4
1 # strptime.m4 serial 4
2 dnl Copyright (C) 2007 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_FUNC_STRPTIME],
8 [
9   AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])
10   AC_REQUIRE([AC_C_RESTRICT])
11   AC_REPLACE_FUNCS(strptime)
12   AC_REQUIRE([gl_TM_GMTOFF])
13   if test $ac_cv_func_strptime = yes; then
14     REPLACE_STRPTIME=0
15   else
16     REPLACE_STRPTIME=1
17   fi
18 ])