summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-31 21:25:02 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-12-31 21:25:02 (GMT)
commitb87f0d00c37d38c45d0da3cf2df907d22bbd6f56 (patch)
tree9e76ab57704bf5db2b58b42dea202d6beea31e64 /configure
parent35326bc5a2c7a224a40f27ca006ebdd3fe40de78 (diff)
downloadcpython-b87f0d00c37d38c45d0da3cf2df907d22bbd6f56.zip
cpython-b87f0d00c37d38c45d0da3cf2df907d22bbd6f56.tar.gz
cpython-b87f0d00c37d38c45d0da3cf2df907d22bbd6f56.tar.bz2
Merged revisions 77196 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77196 | mark.dickinson | 2009-12-31 21:22:50 +0000 (Thu, 31 Dec 2009) | 9 lines Merged revisions 77193 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77193 | mark.dickinson | 2009-12-31 21:11:48 +0000 (Thu, 31 Dec 2009) | 1 line More configure fixes: avoid sh 'integer argument expected' error when 'long long' type doesn't exist. ........ ................
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 8 insertions, 3 deletions
diff --git a/configure b/configure
index f97d834..9b30edf 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 76567 .
+# From configure.in Revision: 76821 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 3.1.
#
@@ -13033,8 +13033,9 @@ _ACEOF
{ echo "$as_me:$LINENO: checking whether to enable large file support" >&5
echo $ECHO_N "checking whether to enable large file support... $ECHO_C" >&6; }
-if test "$have_long_long" = yes -a \
- "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
+if test "$have_long_long" = yes
+then
+if test "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
"$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
cat >>confdefs.h <<\_ACEOF
@@ -13047,6 +13048,10 @@ else
{ echo "$as_me:$LINENO: result: no" >&5
echo "${ECHO_T}no" >&6; }
fi
+else
+ { echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6; }
+fi
# AC_CHECK_SIZEOF() doesn't include <time.h>.
{ echo "$as_me:$LINENO: checking size of time_t" >&5