summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-08-06 08:21:51 +0000
committerRichard M. Stallman <rms@gnu.org>1996-08-06 08:21:51 +0000
commit98ab445ddbd4619c0bf5b8c978e3317565cccc87 (patch)
tree32aaef5358152b802178a2e7f0b40a5d1792b083
parent88ba4f30f5b05583867ac0ef8f7888d3060c6bb8 (diff)
downloademacs-98ab445ddbd4619c0bf5b8c978e3317565cccc87.tar.gz
(LOCALTIME_CACHE): Don't put a string literal "TZ=..." in environ.
-rw-r--r--configure.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 17832a3071a..960bf51de90 100644
--- a/configure.in
+++ b/configure.in
@@ -1438,16 +1438,18 @@ unset_TZ ()
if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
to++;
}
+char TZ_GMT0[] = "TZ=GMT0";
+char TZ_PST8[] = "TZ=PST8";
main()
{
time_t now = time ((time_t *) 0);
int hour_GMT0, hour_unset;
- if (putenv ("TZ=GMT0") != 0)
+ if (putenv (TZ_GMT0) != 0)
exit (1);
hour_GMT0 = localtime (&now)->tm_hour;
unset_TZ ();
hour_unset = localtime (&now)->tm_hour;
- if (putenv ("TZ=PST8") != 0)
+ if (putenv (TZ_PST8) != 0)
exit (1);
if (localtime (&now)->tm_hour == hour_GMT0)
exit (1);