[Python-checkins] CVS: python/dist/src configure,1.281,1.282 configure.in,1.290,1.291 pyconfig.h.in,1.21,1.22

Martin v. L?wis loewis@users.sourceforge.net
Sat, 16 Feb 2002 15:33:25 -0800


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

Modified Files:
	configure configure.in pyconfig.h.in 
Log Message:
Patch #511193: Implement killpg in posixmodule.


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.281
retrieving revision 1.282
diff -C2 -d -r1.281 -r1.282
*** configure	11 Feb 2002 16:31:10 -0000	1.281
--- configure	16 Feb 2002 23:33:22 -0000	1.282
***************
*** 1,5 ****
  #! /bin/sh
  
! # From configure.in Revision: 1.289 
  
  # Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
  #! /bin/sh
  
! # From configure.in Revision: 1.290 
  
[...3955 lines suppressed...]
  if eval "test \"`echo '$''{'ac_cv_type_socklen_t'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 7541 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
***************
*** 7605,7609 ****
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:7608: checking for build directories" >&5
  for dir in $SRCDIRS; do
      if test ! -d $dir; then
--- 7594,7598 ----
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:7597: checking for build directories" >&5
  for dir in $SRCDIRS; do
      if test ! -d $dir; then

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.290
retrieving revision 1.291
diff -C2 -d -r1.290 -r1.291
*** configure.in	11 Feb 2002 16:30:54 -0000	1.290
--- configure.in	16 Feb 2002 23:33:23 -0000	1.291
***************
*** 1424,1428 ****
   flock fork fsync fdatasync fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getpeername getpid getpwent getwd \
!  hstrerror inet_pton kill link lstat mkfifo mktime mremap \
   nice pathconf pause plock poll pthread_init \
   putenv readlink \
--- 1424,1428 ----
   flock fork fsync fdatasync fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getpeername getpid getpwent getwd \
!  hstrerror inet_pton kill killpg link lstat mkfifo mktime mremap \
   nice pathconf pause plock poll pthread_init \
   putenv readlink \

Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** pyconfig.h.in	1 Jan 2002 18:41:32 -0000	1.21
--- pyconfig.h.in	16 Feb 2002 23:33:23 -0000	1.22
***************
*** 460,463 ****
--- 460,466 ----
  #undef HAVE_KILL
  
+ /* Define if you have the killpg function.  */
+ #undef HAVE_KILLPG
+ 
  /* Define if you have the link function.  */
  #undef HAVE_LINK