mirror of https://github.com/python/cpython
Enable pymalloc by default.
This commit is contained in:
parent
dcc819a5c9
commit
16c22976c3
16
configure.in
16
configure.in
|
@ -1335,12 +1335,16 @@ AC_MSG_RESULT($with_cycle_gc)
|
||||||
# Check for Python-specific malloc support
|
# Check for Python-specific malloc support
|
||||||
AC_MSG_CHECKING(for --with-pymalloc)
|
AC_MSG_CHECKING(for --with-pymalloc)
|
||||||
AC_ARG_WITH(pymalloc,
|
AC_ARG_WITH(pymalloc,
|
||||||
[ --with(out)-pymalloc disable/enable specialized mallocs], [
|
[ --with(out)-pymalloc disable/enable specialized mallocs])
|
||||||
if test "$withval" != no
|
|
||||||
then AC_DEFINE(WITH_PYMALLOC) AC_MSG_RESULT(yes)
|
if test -z "$with_pymalloc"
|
||||||
else AC_MSG_RESULT(no)
|
then with_pymalloc="yes"
|
||||||
fi],
|
fi
|
||||||
[AC_MSG_RESULT(no)])
|
if test "$with_pymalloc" != "no"
|
||||||
|
then
|
||||||
|
AC_DEFINE(WITH_PYMALLOC)
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT($with_pymalloc)
|
||||||
|
|
||||||
# Check for --with-wctype-functions
|
# Check for --with-wctype-functions
|
||||||
AC_MSG_CHECKING(for --with-wctype-functions)
|
AC_MSG_CHECKING(for --with-wctype-functions)
|
||||||
|
|
Loading…
Reference in New Issue