diff options
author | Jim Meyering <jim@meyering.net> | 1999-12-10 14:35:38 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-12-10 14:35:38 +0000 |
commit | b026aa85d0c74406099278ef2f224cd7d731c4f6 (patch) | |
tree | ff180ef585e3185e2a22dc8efa7f91746e79646b | |
parent | 4c0b11a8e7c92c246ac7ee1ca3461e73676b70ac (diff) | |
download | coreutils-b026aa85d0c74406099278ef2f224cd7d731c4f6.tar.xz |
(_jm_STRFTIME_PREREQS): Use 3-arg form of AC_DEFINE for HAVE_TM_GMTOFF.
-rw-r--r-- | m4/strftime.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/strftime.m4 b/m4/strftime.m4 index 6c12da6c2..c4ebc411a 100644 --- a/m4/strftime.m4 +++ b/m4/strftime.m4 @@ -16,7 +16,8 @@ AC_DEFUN(_jm_STRFTIME_PREREQS, AC_CHECK_FUNCS(mblen mbrlen) AC_CHECK_MEMBER(struct tm.tm_gmtoff, - [AC_DEFINE(HAVE_TM_GMTOFF)], + [AC_DEFINE(HAVE_TM_GMTOFF, 1, + [Define if struct tm has the tm_gmtoff member.])], , dnl FIXME: having to put the closing square bracket on the dnl FIXME: next line is a gross kludge to work around an |