[Python-checkins] python/dist/src configure,1.412,1.413 configure.in,1.423,1.424

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Thu, 10 Jul 2003 13:44:13 -0700


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv14011

Modified Files:
	configure configure.in 
Log Message:
avoid testing for -Kthread or -pthread if the default build environment
supports pthreads


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.412
retrieving revision 1.413
diff -C2 -d -r1.412 -r1.413
*** configure	7 Jul 2003 21:26:17 -0000	1.412
--- configure	10 Jul 2003 20:44:10 -0000	1.413
***************
*** 1,6 ****
  #! /bin/sh
! # From configure.in Revision: 1.422 .
  # Guess values for system-dependent variables and create Makefiles.
! # Generated by GNU Autoconf 2.53 for python 2.3.
  #
  # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
--- 1,6 ----
  #! /bin/sh
! # From configure.in Revision: 1.423 .
  # Guess values for system-dependent variables and create Makefiles.
[...13458 lines suppressed...]
  
        rm -f $ac_file
***************
*** 18816,18821 ****
  if test "$no_create" != yes; then
    ac_cs_success=:
    exec 5>/dev/null
!   $SHELL $CONFIG_STATUS || ac_cs_success=false
    exec 5>>config.log
    # Use ||, not &&, to avoid exiting from the if with $? = 1, which
--- 19654,19662 ----
  if test "$no_create" != yes; then
    ac_cs_success=:
+   ac_config_status_args=
+   test "$silent" = yes &&
+     ac_config_status_args="$ac_config_status_args --quiet"
    exec 5>/dev/null
!   $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
    exec 5>>config.log
    # Use ||, not &&, to avoid exiting from the if with $? = 1, which

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.423
retrieving revision 1.424
diff -C2 -d -r1.423 -r1.424
*** configure.in	7 Jul 2003 21:26:19 -0000	1.423
--- configure.in	10 Jul 2003 20:44:10 -0000	1.424
***************
*** 752,756 ****
  }
  ],
!   ac_cv_pthread_is_default=yes,
    ac_cv_pthread_is_default=no,
    ac_cv_pthread_is_default=no)
--- 752,760 ----
  }
  ],
! [
!   ac_cv_pthread_is_default=yes
!   ac_cv_kthread=no
!   ac_cv_pthread=no
! ],
    ac_cv_pthread_is_default=no,
    ac_cv_pthread_is_default=no)
***************
*** 792,796 ****
  fi
  
! if test $ac_cv_kpthread = no
  then
  # -Kthread, if available, provides the right #defines
--- 796,800 ----
  fi
  
! if test $ac_cv_kpthread = no -a $ac_cv_pthread_is_default = no
  then
  # -Kthread, if available, provides the right #defines
***************
*** 823,827 ****
  fi
  
! if test $ac_cv_kthread = no
  then
  # -pthread, if available, provides the right #defines
--- 827,831 ----
  fi
  
! if test $ac_cv_kthread = no -a $ac_cv_pthread_is_default = no
  then
  # -pthread, if available, provides the right #defines