[Python-checkins] python/dist/src configure.in,1.317,1.318 configure,1.307,1.308 pyconfig.h.in,1.35,1.36

mwh@users.sourceforge.net mwh@users.sourceforge.net
Mon, 27 May 2002 08:08:26 -0700


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

Modified Files:
	configure.in configure pyconfig.h.in 
Log Message:
This is patch

[ 559250 ] more POSIX signal stuff

Adds support (and docs and tests and autoconfery) for posix signal
mask handling -- sigpending, sigprocmask and sigsuspend.


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.317
retrieving revision 1.318
diff -C2 -d -r1.317 -r1.318
*** configure.in	15 May 2002 18:24:06 -0000	1.317
--- configure.in	27 May 2002 15:08:21 -0000	1.318
***************
*** 1594,1599 ****
   select setegid seteuid setgid setgroups \
   setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \
!  sigaction siginterrupt sigrelse strftime strptime symlink sysconf \
!  tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
   truncate uname unsetenv waitpid _getpty getpriority)
  
--- 1594,1599 ----
   select setegid seteuid setgid setgroups \
   setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \
!  sigaction siginterrupt sigprocmask sigrelse strftime strptime symlink \
!  sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
   truncate uname unsetenv waitpid _getpty getpriority)
  

Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.307
retrieving revision 1.308
diff -C2 -d -r1.307 -r1.308
*** configure	15 May 2002 18:24:05 -0000	1.307
--- configure	27 May 2002 15:08:21 -0000	1.308
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.316 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.317 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53.
***************
*** 11279,11282 ****
--- 11279,11283 ----
  
  
+ 
  for ac_func in alarm chown chroot clock confstr ctermid ctermid_r execv \
   fchdir flock fork fsync fdatasync fpathconf ftime ftruncate \
***************
*** 11287,11292 ****
   select setegid seteuid setgid setgroups \
   setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \
!  sigaction siginterrupt sigrelse strftime strptime symlink sysconf \
!  tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
   truncate uname unsetenv waitpid _getpty getpriority
  do
--- 11288,11293 ----
   select setegid seteuid setgid setgroups \
   setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \
!  sigaction siginterrupt sigprocmask sigrelse strftime strptime symlink \
!  sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
   truncate uname unsetenv waitpid _getpty getpriority
  do

Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** pyconfig.h.in	15 May 2002 18:24:06 -0000	1.35
--- pyconfig.h.in	27 May 2002 15:08:23 -0000	1.36
***************
*** 384,387 ****
--- 384,390 ----
  #undef HAVE_SIGNAL_H
  
+ /* Define to 1 if you have the `sigprocmask' function. */
+ #undef HAVE_SIGPROCMASK
+ 
  /* Define to 1 if you have the `sigrelse' function. */
  #undef HAVE_SIGRELSE