[Python-checkins] CVS: python/dist/src configure.in,1.299,1.300

Neil Schemenauer nascheme@users.sourceforge.net
Fri, 22 Mar 2002 07:34:22 -0800


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv19382

Modified Files:
	configure.in 
Log Message:
Enable pymalloc by default.


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.299
retrieving revision 1.300
diff -C2 -d -r1.299 -r1.300
*** configure.in	21 Mar 2002 15:10:58 -0000	1.299
--- configure.in	22 Mar 2002 15:34:20 -0000	1.300
***************
*** 1336,1345 ****
  AC_MSG_CHECKING(for --with-pymalloc)
  AC_ARG_WITH(pymalloc,
! [  --with(out)-pymalloc            disable/enable specialized mallocs], [
! if test "$withval" != no
! then AC_DEFINE(WITH_PYMALLOC) AC_MSG_RESULT(yes)
! else AC_MSG_RESULT(no)
! fi],
! [AC_MSG_RESULT(no)])
  
  # Check for --with-wctype-functions
--- 1336,1349 ----
  AC_MSG_CHECKING(for --with-pymalloc)
  AC_ARG_WITH(pymalloc,
! [  --with(out)-pymalloc            disable/enable specialized mallocs])
! 
! if test -z "$with_pymalloc"
! then with_pymalloc="yes"
! fi
! if test "$with_pymalloc" != "no"
! then
!     AC_DEFINE(WITH_PYMALLOC)
! fi
! AC_MSG_RESULT($with_pymalloc)
  
  # Check for --with-wctype-functions