mirror of
https://github.com/python/cpython.git
synced 2025-12-04 16:43:27 +00:00
The usual
This commit is contained in:
parent
8bc1dfd2fb
commit
96f2eb93e3
1 changed files with 5 additions and 5 deletions
10
configure
vendored
10
configure
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
# From configure.in Revision: 1.102
|
# From configure.in Revision: 1.103
|
||||||
|
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated automatically using autoconf version 2.13
|
# Generated automatically using autoconf version 2.13
|
||||||
|
|
@ -2054,7 +2054,7 @@ else
|
||||||
fi
|
fi
|
||||||
rm -f conftest*
|
rm -f conftest*
|
||||||
echo "$ac_t""$have_long_long" 1>&6
|
echo "$ac_t""$have_long_long" 1>&6
|
||||||
if test $have_long_long = yes ; then
|
if test "$have_long_long" = yes ; then
|
||||||
echo $ac_n "checking size of long long""... $ac_c" 1>&6
|
echo $ac_n "checking size of long long""... $ac_c" 1>&6
|
||||||
echo "configure:2060: checking size of long long" >&5
|
echo "configure:2060: checking size of long long" >&5
|
||||||
if eval "test \"`echo '$''{'ac_cv_sizeof_long_long'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_sizeof_long_long'+set}'`\" = set"; then
|
||||||
|
|
@ -2141,9 +2141,9 @@ EOF
|
||||||
|
|
||||||
echo $ac_n "checking whether to enable large file support""... $ac_c" 1>&6
|
echo $ac_n "checking whether to enable large file support""... $ac_c" 1>&6
|
||||||
echo "configure:2144: checking whether to enable large file support" >&5
|
echo "configure:2144: checking whether to enable large file support" >&5
|
||||||
if test $have_long_long = yes -a \
|
if test "$have_long_long" = yes -a \
|
||||||
$ac_cv_sizeof_off_t -gt $ac_cv_sizeof_long -a \
|
"$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
|
||||||
$ac_cv_sizeof_long_long -ge $ac_cv_sizeof_off_t; then
|
"$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
|
||||||
cat >> confdefs.h <<\EOF
|
cat >> confdefs.h <<\EOF
|
||||||
#define HAVE_LARGEFILE_SUPPORT 1
|
#define HAVE_LARGEFILE_SUPPORT 1
|
||||||
EOF
|
EOF
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue