mirror of https://github.com/python/cpython
More configure fixes: avoid sh 'integer argument expected' error when 'long long' type doesn't exist.
This commit is contained in:
parent
5ce8474cc7
commit
0ef0b910ce
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.in Revision: 77169 .
|
# From configure.in Revision: 77189 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.61 for python 2.7.
|
# Generated by GNU Autoconf 2.61 for python 2.7.
|
||||||
#
|
#
|
||||||
|
@ -13465,8 +13465,9 @@ _ACEOF
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: checking whether to enable large file support" >&5
|
{ 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; }
|
echo $ECHO_N "checking whether to enable large file support... $ECHO_C" >&6; }
|
||||||
if test "$have_long_long" = yes -a \
|
if test "$have_long_long" = yes
|
||||||
"$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
|
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
|
"$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
cat >>confdefs.h <<\_ACEOF
|
||||||
|
@ -13479,6 +13480,10 @@ else
|
||||||
{ echo "$as_me:$LINENO: result: no" >&5
|
{ echo "$as_me:$LINENO: result: no" >&5
|
||||||
echo "${ECHO_T}no" >&6; }
|
echo "${ECHO_T}no" >&6; }
|
||||||
fi
|
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 "$as_me:$LINENO: checking for time_t" >&5
|
||||||
echo $ECHO_N "checking for time_t... $ECHO_C" >&6; }
|
echo $ECHO_N "checking for time_t... $ECHO_C" >&6; }
|
||||||
|
@ -21038,7 +21043,7 @@ fi
|
||||||
|
|
||||||
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
|
then
|
||||||
if test $ipv6 = yes
|
if test $ipv6 = yes
|
||||||
then
|
then
|
||||||
|
|
10
configure.in
10
configure.in
|
@ -1457,8 +1457,9 @@ AC_CHECK_SIZEOF(off_t, [], [
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_MSG_CHECKING(whether to enable large file support)
|
AC_MSG_CHECKING(whether to enable large file support)
|
||||||
if test "$have_long_long" = yes -a \
|
if test "$have_long_long" = yes
|
||||||
"$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
|
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
|
"$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
|
||||||
AC_DEFINE(HAVE_LARGEFILE_SUPPORT, 1,
|
AC_DEFINE(HAVE_LARGEFILE_SUPPORT, 1,
|
||||||
[Defined to enable large file support when an off_t is bigger than a long
|
[Defined to enable large file support when an off_t is bigger than a long
|
||||||
|
@ -1469,6 +1470,9 @@ if test "$have_long_long" = yes -a \
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
fi
|
||||||
|
|
||||||
AC_CHECK_SIZEOF(time_t, [], [
|
AC_CHECK_SIZEOF(time_t, [], [
|
||||||
#ifdef HAVE_SYS_TYPES_H
|
#ifdef HAVE_SYS_TYPES_H
|
||||||
|
@ -2967,7 +2971,7 @@ int main()
|
||||||
ac_cv_buggy_getaddrinfo=yes))
|
ac_cv_buggy_getaddrinfo=yes))
|
||||||
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
|
then
|
||||||
if test $ipv6 = yes
|
if test $ipv6 = yes
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue