summaryrefslogtreecommitdiff
path: root/m4/strftime.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-04-05 12:13:59 +0000
committerJim Meyering <jim@meyering.net>2000-04-05 12:13:59 +0000
commit7354c6077f4a990d60431eec29c2ed2a8701682c (patch)
tree66061f2ecc11985de2ae27f0e04f51c4a0976f4b /m4/strftime.m4
parent48c6dffe80e6e2dc4fbf0850ff63c311058c0070 (diff)
downloadcoreutils-7354c6077f4a990d60431eec29c2ed2a8701682c.tar.xz
Back out the 2000-04-02 change.
Instead of that change, simply undefine putenv in the test program.
Diffstat (limited to 'm4/strftime.m4')
-rw-r--r--m4/strftime.m47
1 files changed, 6 insertions, 1 deletions
diff --git a/m4/strftime.m4 b/m4/strftime.m4
index ad12ddb11..732eaccf3 100644
--- a/m4/strftime.m4
+++ b/m4/strftime.m4
@@ -1,4 +1,4 @@
-#serial 12
+#serial 13
dnl This macro is intended to be used solely in this file.
dnl These are the prerequisite macros for GNU's strftime.c replacement.
@@ -77,6 +77,11 @@ main ()
time_t t = 738367; /* Fri Jan 9 13:06:07 1970 */
tm = gmtime (&t);
+ /* Undefine this in case the configure-time putenv test has defined it
+ to something else. The use we make of this function here doesn't
+ require the added functionality of the replacement one. */
+#undef putenv
+
/* This is necessary to make strftime give consistent zone strings and
e.g., seconds since the epoch (%s). */
putenv ("TZ=GMT0");