[Python-checkins] python/dist/src configure.in,1.309,1.310 configure,1.299,1.300 pyconfig.h.in,1.30,1.31

fdrake@sourceforge.net fdrake@sourceforge.net
Mon, 15 Apr 2002 12:20:30 -0700


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

Modified Files:
	configure.in configure pyconfig.h.in 
Log Message:
Add a test for fchdir().
This is part of SF feature #536796.


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.309
retrieving revision 1.310
diff -C2 -d -r1.309 -r1.310
*** configure.in	14 Apr 2002 20:12:39 -0000	1.309
--- configure.in	15 Apr 2002 19:20:23 -0000	1.310
***************
*** 1581,1585 ****
  # checks for library functions
  AC_CHECK_FUNCS(alarm chown chroot clock confstr ctermid ctermid_r execv \
!  flock fork fsync fdatasync fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getpeername getpid getpwent getwd \
   hstrerror inet_pton kill killpg link lstat mkfifo mknod mktime mremap \
--- 1581,1585 ----
  # checks for library functions
  AC_CHECK_FUNCS(alarm chown chroot clock confstr ctermid ctermid_r execv \
!  fchdir flock fork fsync fdatasync fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getpeername getpid getpwent getwd \
   hstrerror inet_pton kill killpg link lstat mkfifo mknod mktime mremap \

Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.299
retrieving revision 1.300
diff -C2 -d -r1.299 -r1.300
*** configure	14 Apr 2002 20:12:37 -0000	1.299
--- configure	15 Apr 2002 19:20:23 -0000	1.300
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.307 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.309 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53.
***************
*** 11271,11276 ****
  
  
  for ac_func in alarm chown chroot clock confstr ctermid ctermid_r execv \
!  flock fork fsync fdatasync fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getpeername getpid getpwent getwd \
   hstrerror inet_pton kill killpg link lstat mkfifo mknod mktime mremap \
--- 11271,11277 ----
  
  
+ 
  for ac_func in alarm chown chroot clock confstr ctermid ctermid_r execv \
!  fchdir flock fork fsync fdatasync fpathconf ftime ftruncate \
   gai_strerror getgroups getlogin getpeername getpid getpwent getwd \
   hstrerror inet_pton kill killpg link lstat mkfifo mknod mktime mremap \

Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** pyconfig.h.in	14 Apr 2002 20:12:39 -0000	1.30
--- pyconfig.h.in	15 Apr 2002 19:20:27 -0000	1.31
***************
*** 87,90 ****
--- 87,93 ----
  #undef HAVE_EXECV
  
+ /* Define to 1 if you have the `fchdir' function. */
+ #undef HAVE_FCHDIR
+ 
  /* Define to 1 if you have the <fcntl.h> header file. */
  #undef HAVE_FCNTL_H