mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
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. ........
This commit is contained in:
parent
89d7d41602
commit
2df5d28155
2 changed files with 16 additions and 7 deletions
13
configure
vendored
13
configure
vendored
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision: 77170 .
|
||||
# From configure.in Revision: 77190 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.61 for python 3.2.
|
||||
#
|
||||
|
@ -13391,8 +13391,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
|
||||
|
@ -13405,6 +13406,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
|
||||
|
||||
{ echo "$as_me:$LINENO: checking for time_t" >&5
|
||||
echo $ECHO_N "checking for time_t... $ECHO_C" >&6; }
|
||||
|
@ -20347,7 +20352,7 @@ fi
|
|||
|
||||
fi
|
||||
|
||||
if test $have_getaddrinfo = no -o $ac_cv_buggy_getaddrinfo = yes
|
||||
if test $have_getaddrinfo = no -o "$ac_cv_buggy_getaddrinfo" = yes
|
||||
then
|
||||
if test $ipv6 = yes
|
||||
then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue