summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-04-11 15:35:53 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-04-11 15:35:53 (GMT)
commit7f2588c073e80ab9932f69d1c5766aa73f4ae7d0 (patch)
treeefea598e6e27c461a2a37cc2eb6968b82f970d7c /configure
parentbae5c965e8d42c791ec42959f7b025f29f38926e (diff)
downloadcpython-7f2588c073e80ab9932f69d1c5766aa73f4ae7d0.zip
cpython-7f2588c073e80ab9932f69d1c5766aa73f4ae7d0.tar.gz
cpython-7f2588c073e80ab9932f69d1c5766aa73f4ae7d0.tar.bz2
SF patch #706707, time.tzset standards compliance update by Stuart Bishop
Update configure and test to use proper timezone specifications
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure b/configure
index 24d60e8..591da29 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 1.398 .
+# From configure.in Revision: 1.400 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3.
#
@@ -908,7 +908,7 @@ esac
# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
# absolute.
ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
-ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
+ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
@@ -16741,10 +16741,10 @@ int main()
int eastern_hour;
time_t now;
now = time((time_t*)NULL);
- putenv("TZ=GMT");
+ putenv("TZ=UTC+0");
tzset();
gmt_hour = localtime(&now)->tm_hour;
- putenv("TZ=US/Eastern");
+ putenv("TZ=EST+5EDT,M4.1.0,M10.5.0");
tzset();
eastern_hour = localtime(&now)->tm_hour;
if (eastern_hour == gmt_hour)
@@ -17828,7 +17828,7 @@ esac
# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
# absolute.
ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
-ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
+ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`