[Python-checkins] python/dist/src configure,1.367,1.368 configure.in,1.378,1.379 pyconfig.h.in,1.64,1.65

loewis@users.sourceforge.net loewis@users.sourceforge.net
Fri, 27 Dec 2002 02:16:45 -0800


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

Modified Files:
	configure configure.in pyconfig.h.in 
Log Message:
Patch #657889: Implement posix.getloadavg.


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.367
retrieving revision 1.368
diff -C2 -d -r1.367 -r1.368
*** configure	21 Dec 2002 18:34:04 -0000	1.367
--- configure	27 Dec 2002 10:16:40 -0000	1.368
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.377 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53 for python 2.3.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.378 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53 for python 2.3.
***************
*** 12010,12016 ****
  
  
  for ac_func in alarm chown clock confstr ctermid execv \
   fchdir flock fork fsync fdatasync fpathconf ftime ftruncate \
!  gai_strerror getgroups getlogin getpeername getpgid getpid getpwent getwd \
   hstrerror inet_pton kill killpg lchown lstat mkfifo mknod mktime \
   mremap nice pathconf pause plock poll pthread_init \
--- 12010,12018 ----
  
  
+ 
  for ac_func in alarm chown clock confstr ctermid execv \
   fchdir flock fork fsync fdatasync fpathconf ftime ftruncate \
!  gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \
!  getpriority getpwent getwd \
   hstrerror inet_pton kill killpg lchown lstat mkfifo mknod mktime \
   mremap nice pathconf pause plock poll pthread_init \
***************
*** 12020,12024 ****
   sigaction siginterrupt sigrelse strftime strptime \
   sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
!  truncate uname unsetenv utimes waitpid wcscoll _getpty getpriority
  do
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
--- 12022,12026 ----
   sigaction siginterrupt sigrelse strftime strptime \
   sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
!  truncate uname unsetenv utimes waitpid wcscoll _getpty
  do
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.378
retrieving revision 1.379
diff -C2 -d -r1.378 -r1.379
*** configure.in	21 Dec 2002 18:34:06 -0000	1.378
--- configure.in	27 Dec 2002 10:16:42 -0000	1.379
***************
*** 1763,1767 ****
  AC_CHECK_FUNCS(alarm chown clock confstr ctermid execv \
   fchdir flock fork fsync fdatasync fpathconf ftime ftruncate \
!  gai_strerror getgroups getlogin getpeername getpgid getpid getpwent getwd \
   hstrerror inet_pton kill killpg lchown lstat mkfifo mknod mktime \
   mremap nice pathconf pause plock poll pthread_init \
--- 1763,1768 ----
  AC_CHECK_FUNCS(alarm chown clock confstr ctermid execv \
   fchdir flock fork fsync fdatasync fpathconf ftime ftruncate \
!  gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \
!  getpriority getpwent getwd \
   hstrerror inet_pton kill killpg lchown lstat mkfifo mknod mktime \
   mremap nice pathconf pause plock poll pthread_init \
***************
*** 1771,1775 ****
   sigaction siginterrupt sigrelse strftime strptime \
   sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
!  truncate uname unsetenv utimes waitpid wcscoll _getpty getpriority)
  
  # For some functions, having a definition is not sufficient, since
--- 1772,1776 ----
   sigaction siginterrupt sigrelse strftime strptime \
   sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
!  truncate uname unsetenv utimes waitpid wcscoll _getpty)
  
  # For some functions, having a definition is not sufficient, since

Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -d -r1.64 -r1.65
*** pyconfig.h.in	21 Dec 2002 18:34:06 -0000	1.64
--- pyconfig.h.in	27 Dec 2002 10:16:42 -0000	1.65
***************
*** 160,163 ****
--- 160,166 ----
  #undef HAVE_GETHOSTBYNAME_R_6_ARG
  
+ /* Define to 1 if you have the `getloadavg' function. */
+ #undef HAVE_GETLOADAVG
+ 
  /* Define to 1 if you have the `getlogin' function. */
  #undef HAVE_GETLOGIN