- Issue #3754: Some unrelated configure.ac cleanups.
This commit is contained in:
parent
ba01583eef
commit
9c7817e9ee
|
@ -9860,13 +9860,13 @@ fi
|
||||||
if test -z "$with_pymalloc"
|
if test -z "$with_pymalloc"
|
||||||
then
|
then
|
||||||
with_pymalloc="yes"
|
with_pymalloc="yes"
|
||||||
ABIFLAGS="${ABIFLAGS}m"
|
|
||||||
fi
|
fi
|
||||||
if test "$with_pymalloc" != "no"
|
if test "$with_pymalloc" != "no"
|
||||||
then
|
then
|
||||||
|
|
||||||
$as_echo "#define WITH_PYMALLOC 1" >>confdefs.h
|
$as_echo "#define WITH_PYMALLOC 1" >>confdefs.h
|
||||||
|
|
||||||
|
ABIFLAGS="${ABIFLAGS}m"
|
||||||
fi
|
fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_pymalloc" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_pymalloc" >&5
|
||||||
$as_echo "$with_pymalloc" >&6; }
|
$as_echo "$with_pymalloc" >&6; }
|
||||||
|
@ -9964,8 +9964,13 @@ then
|
||||||
else
|
else
|
||||||
MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
|
MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
|
||||||
fi
|
fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: MACHDEP_OBJS" >&5
|
if test -z "$MACHDEP_OBJS"; then
|
||||||
$as_echo "MACHDEP_OBJS" >&6; }
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5
|
||||||
|
$as_echo "none" >&6; }
|
||||||
|
else
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MACHDEP_OBJS" >&5
|
||||||
|
$as_echo "$MACHDEP_OBJS" >&6; }
|
||||||
|
fi
|
||||||
|
|
||||||
# checks for library functions
|
# checks for library functions
|
||||||
for ac_func in alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
|
for ac_func in alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
|
||||||
|
@ -11497,7 +11502,7 @@ fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_buggy_getaddrinfo" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_buggy_getaddrinfo" >&5
|
||||||
$as_echo "$ac_cv_buggy_getaddrinfo" >&6; }
|
$as_echo "$ac_cv_buggy_getaddrinfo" >&6; }
|
||||||
|
|
||||||
if test $have_getaddrinfo = no -o "$ac_cv_buggy_getaddrinfo" = yes
|
if test $have_getaddrinfo = no || test "$ac_cv_buggy_getaddrinfo" = yes
|
||||||
then
|
then
|
||||||
if test $ipv6 = yes
|
if test $ipv6 = yes
|
||||||
then
|
then
|
||||||
|
|
10
configure.ac
10
configure.ac
|
@ -2594,12 +2594,12 @@ AC_ARG_WITH(pymalloc,
|
||||||
if test -z "$with_pymalloc"
|
if test -z "$with_pymalloc"
|
||||||
then
|
then
|
||||||
with_pymalloc="yes"
|
with_pymalloc="yes"
|
||||||
ABIFLAGS="${ABIFLAGS}m"
|
|
||||||
fi
|
fi
|
||||||
if test "$with_pymalloc" != "no"
|
if test "$with_pymalloc" != "no"
|
||||||
then
|
then
|
||||||
AC_DEFINE(WITH_PYMALLOC, 1,
|
AC_DEFINE(WITH_PYMALLOC, 1,
|
||||||
[Define if you want to compile in Python-specific mallocs])
|
[Define if you want to compile in Python-specific mallocs])
|
||||||
|
ABIFLAGS="${ABIFLAGS}m"
|
||||||
fi
|
fi
|
||||||
AC_MSG_RESULT($with_pymalloc)
|
AC_MSG_RESULT($with_pymalloc)
|
||||||
|
|
||||||
|
@ -2668,7 +2668,11 @@ then
|
||||||
else
|
else
|
||||||
MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
|
MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
|
||||||
fi
|
fi
|
||||||
AC_MSG_RESULT(MACHDEP_OBJS)
|
if test -z "$MACHDEP_OBJS"; then
|
||||||
|
AC_MSG_RESULT([none])
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT([$MACHDEP_OBJS])
|
||||||
|
fi
|
||||||
|
|
||||||
# checks for library functions
|
# checks for library functions
|
||||||
AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
|
AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
|
||||||
|
@ -3128,7 +3132,7 @@ fi
|
||||||
|
|
||||||
AC_MSG_RESULT($ac_cv_buggy_getaddrinfo)
|
AC_MSG_RESULT($ac_cv_buggy_getaddrinfo)
|
||||||
|
|
||||||
if test $have_getaddrinfo = no -o "$ac_cv_buggy_getaddrinfo" = yes
|
if test $have_getaddrinfo = no || test "$ac_cv_buggy_getaddrinfo" = yes
|
||||||
then
|
then
|
||||||
if test $ipv6 = yes
|
if test $ipv6 = yes
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue