[Python-checkins] CVS: python/dist/src configure.in,1.147,1.148 config.h.in,2.68,2.69 configure,1.136,1.137

A.M. Kuchling python-dev@python.org
Thu, 24 Aug 2000 18:14:12 -0700


Update of /cvsroot/python/python/dist/src
In directory slayer.i.sourceforge.net:/tmp/cvs-serv11924

Modified Files:
	configure.in config.h.in configure 
Log Message:
Add configure tests for poll() (SF patch #100852)


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.147
retrieving revision 1.148
diff -C2 -r1.147 -r1.148
*** configure.in	2000/08/23 21:33:04	1.147
--- configure.in	2000/08/25 01:14:07	1.148
***************
*** 368,372 ****
  # checks for header files
  AC_HEADER_STDC
! AC_CHECK_HEADERS(dlfcn.h fcntl.h limits.h locale.h ncurses.h pthread.h \
  signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h \
  sys/audioio.h sys/file.h sys/lock.h \
--- 368,372 ----
  # checks for header files
  AC_HEADER_STDC
! AC_CHECK_HEADERS(dlfcn.h fcntl.h limits.h locale.h ncurses.h poll.h pthread.h \
  signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h \
  sys/audioio.h sys/file.h sys/lock.h \
***************
*** 873,877 ****
   getgroups getlogin getpeername getpid getpwent getwd \
   kill link lstat mkfifo mktime mremap \
!  nice pathconf pause plock pthread_init \
   putenv readlink \
   select setegid seteuid setgid \
--- 873,877 ----
   getgroups getlogin getpeername getpid getpwent getwd \
   kill link lstat mkfifo mktime mremap \
!  nice pathconf pause plock poll pthread_init \
   putenv readlink \
   select setegid seteuid setgid \

Index: config.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/config.h.in,v
retrieving revision 2.68
retrieving revision 2.69
diff -C2 -r2.68 -r2.69
*** config.h.in	2000/08/23 21:33:04	2.68
--- config.h.in	2000/08/25 01:14:08	2.69
***************
*** 405,408 ****
--- 405,411 ----
  #undef HAVE_PLOCK
  
+ /* Define if you have the poll function.  */
+ #undef HAVE_POLL
+ 
  /* Define if you have the pthread_init function.  */
  #undef HAVE_PTHREAD_INIT
***************
*** 536,539 ****
--- 539,545 ----
  /* Define if you have the <ndir.h> header file.  */
  #undef HAVE_NDIR_H
+ 
+ /* Define if you have the <poll.h> header file.  */
+ #undef HAVE_POLL_H
  
  /* Define if you have the <pthread.h> header file.  */

Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.136
retrieving revision 1.137
diff -C2 -r1.136 -r1.137
*** configure	2000/08/23 21:33:04	1.136
--- configure	2000/08/25 01:14:08	1.137
***************
*** 1,5 ****
  #! /bin/sh
  
! # From configure.in Revision: 1.146 
  
  # Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
  #! /bin/sh
  
! # From configure.in Revision: 1.147 
  
  # Guess values for system-dependent variables and create Makefiles.
***************
*** 1537,1541 ****
  fi
  
! for ac_hdr in dlfcn.h fcntl.h limits.h locale.h ncurses.h pthread.h \
  signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h \
  sys/audioio.h sys/file.h sys/lock.h \
--- 1537,1541 ----
  fi
  
! for ac_hdr in dlfcn.h fcntl.h limits.h locale.h ncurses.h poll.h pthread.h \
  signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h \
  sys/audioio.h sys/file.h sys/lock.h \
***************
*** 3799,3803 ****
   getgroups getlogin getpeername getpid getpwent getwd \
   kill link lstat mkfifo mktime mremap \
!  nice pathconf pause plock pthread_init \
   putenv readlink \
   select setegid seteuid setgid \
--- 3799,3803 ----
   getgroups getlogin getpeername getpid getpwent getwd \
   kill link lstat mkfifo mktime mremap \
!  nice pathconf pause plock poll pthread_init \
   putenv readlink \
   select setegid seteuid setgid \