[Python-checkins] CVS: python/dist/src configure,1.212,1.213 configure.in,1.220,1.221 config.h.in,2.95,2.96

Martin v. L?wis loewis@users.sourceforge.net
Sun, 24 Jun 2001 14:18:28 -0700


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

Modified Files:
	configure configure.in config.h.in 
Log Message:
Emulate inet_{pton,ntop} on systems that don't provide it.


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.212
retrieving revision 1.213
diff -C2 -r1.212 -r1.213
*** configure	2001/06/23 16:30:12	1.212
--- configure	2001/06/24 21:18:25	1.213
***************
*** 1,5 ****
  #! /bin/sh
  
! # From configure.in Revision: 1.219 
  
  # Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
  #! /bin/sh
  
! # From configure.in Revision: 1.220 
  
  # Guess values for system-dependent variables and create Makefiles.
***************
*** 4481,4485 ****
   flock fork fsync fdatasync fpathconf ftime ftruncate \
   getgroups getlogin getpeername getpid getpwent getwd \
!  kill link lstat mkfifo mktime mremap \
   nice pathconf pause plock poll pthread_init \
   putenv readlink \
--- 4481,4485 ----
   flock fork fsync fdatasync fpathconf ftime ftruncate \
   getgroups getlogin getpeername getpid getpwent getwd \
!  inet_pton kill link lstat mkfifo mktime mremap \
   nice pathconf pause plock poll pthread_init \
   putenv readlink \

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.220
retrieving revision 1.221
diff -C2 -r1.220 -r1.221
*** configure.in	2001/06/23 16:30:12	1.220
--- configure.in	2001/06/24 21:18:25	1.221
***************
*** 1163,1167 ****
   flock fork fsync fdatasync fpathconf ftime ftruncate \
   getgroups getlogin getpeername getpid getpwent getwd \
!  kill link lstat mkfifo mktime mremap \
   nice pathconf pause plock poll pthread_init \
   putenv readlink \
--- 1163,1167 ----
   flock fork fsync fdatasync fpathconf ftime ftruncate \
   getgroups getlogin getpeername getpid getpwent getwd \
!  inet_pton kill link lstat mkfifo mktime mremap \
   nice pathconf pause plock poll pthread_init \
   putenv readlink \

Index: config.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/config.h.in,v
retrieving revision 2.95
retrieving revision 2.96
diff -C2 -r2.95 -r2.96
*** config.h.in	2001/06/23 16:30:13	2.95
--- config.h.in	2001/06/24 21:18:25	2.96
***************
*** 393,396 ****
--- 393,399 ----
  #undef HAVE_HYPOT
  
+ /* Define if you have the inet_pton function.  */
+ #undef HAVE_INET_PTON
+ 
  /* Define if you have the kill function.  */
  #undef HAVE_KILL