[Python-checkins] python/dist/src configure, 1.429, 1.430 configure.in, 1.439, 1.440 pyconfig.h.in, 1.86, 1.87

loewis at users.sourceforge.net loewis at users.sourceforge.net
Mon Nov 10 01:35:38 EST 2003


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

Modified Files:
	configure configure.in pyconfig.h.in 
Log Message:
Patch #839038: Add getsid(2).


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.429
retrieving revision 1.430
diff -C2 -d -r1.429 -r1.430
*** configure	31 Oct 2003 15:42:07 -0000	1.429
--- configure	10 Nov 2003 06:35:36 -0000	1.430
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.438 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.57 for python 2.4.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.439 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.57 for python 2.4.
***************
*** 13097,13104 ****
  
  
  for ac_func in alarm chown clock confstr ctermid execv \
   fork fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \
!  getpriority getpwent getwd \
   kill killpg lchown lstat mkfifo mknod mktime \
   mremap nice pathconf pause plock poll pthread_init \
--- 13097,13105 ----
  
  
+ 
  for ac_func in alarm chown clock confstr ctermid execv \
   fork fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \
!  getpriority getpwent getsid getwd \
   kill killpg lchown lstat mkfifo mknod mktime \
   mremap nice pathconf pause plock poll pthread_init \

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.439
retrieving revision 1.440
diff -C2 -d -r1.439 -r1.440
*** configure.in	31 Oct 2003 15:42:07 -0000	1.439
--- configure.in	10 Nov 2003 06:35:36 -0000	1.440
***************
*** 2075,2079 ****
   fork fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \
!  getpriority getpwent getwd \
   kill killpg lchown lstat mkfifo mknod mktime \
   mremap nice pathconf pause plock poll pthread_init \
--- 2075,2079 ----
   fork fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \
!  getpriority getpwent getsid getwd \
   kill killpg lchown lstat mkfifo mknod mktime \
   mremap nice pathconf pause plock poll pthread_init \

Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.86
retrieving revision 1.87
diff -C2 -d -r1.86 -r1.87
*** pyconfig.h.in	25 Sep 2003 14:50:29 -0000	1.86
--- pyconfig.h.in	10 Nov 2003 06:35:36 -0000	1.87
***************
*** 127,130 ****
--- 127,133 ----
  #undef HAVE_FSTATVFS
  
+ /* Define if you have the 'fsync' function. */
+ #undef HAVE_FSYNC
+ 
  /* Define to 1 if you have the `ftell64' function. */
  #undef HAVE_FTELL64
***************
*** 199,202 ****
--- 202,208 ----
  #undef HAVE_GETPWENT
  
+ /* Define to 1 if you have the `getsid' function. */
+ #undef HAVE_GETSID
+ 
  /* Define to 1 if you have the `gettimeofday' function. */
  #undef HAVE_GETTIMEOFDAY
***************
*** 486,492 ****
  #undef HAVE_SYMLINK
  
- /* Define if you have the 'fsync' function. */
- #undef HAVE_FSYNC
- 
  /* Define to 1 if you have the `sysconf' function. */
  #undef HAVE_SYSCONF
--- 492,495 ----
***************
*** 617,621 ****
  
  /* Define if you have a useable wchar_t type defined in wchar.h; useable means
!    wchar_t must be 16-bit unsigned type. (see Include/unicodeobject.h). */
  #undef HAVE_USABLE_WCHAR_T
  
--- 620,625 ----
  
  /* Define if you have a useable wchar_t type defined in wchar.h; useable means
!    wchar_t must be an unsigned type with at least 16 bits. (see
!    Include/unicodeobject.h). */
  #undef HAVE_USABLE_WCHAR_T
  





More information about the Python-checkins mailing list