[Python-checkins] CVS: python/dist/src configure,1.288,1.289 configure.in,1.298,1.299 pyconfig.h.in,1.23,1.24

Martin v. L?wis loewis@users.sourceforge.net
Thu, 21 Mar 2002 07:11:01 -0800


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

Modified Files:
	configure configure.in pyconfig.h.in 
Log Message:
Patch #532729: check for sem_init in -lrt.


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.288
retrieving revision 1.289
diff -C2 -d -r1.288 -r1.289
*** configure	19 Mar 2002 15:15:30 -0000	1.288
--- configure	21 Mar 2002 15:10:56 -0000	1.289
***************
*** 1,5 ****
  #! /bin/sh
  
! # From configure.in Revision: 1.297 
  
  # Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
  #! /bin/sh
  
! # From configure.in Revision: 1.298 
  
[...3167 lines suppressed...]
  if eval "test \"`echo '$''{'ac_cv_type_socklen_t'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 7595 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
***************
*** 7601,7605 ****
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:7604: checking for build directories" >&5
  for dir in $SRCDIRS; do
      if test ! -d $dir; then
--- 7648,7652 ----
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:7651: checking for build directories" >&5
  for dir in $SRCDIRS; do
      if test ! -d $dir; then

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.298
retrieving revision 1.299
diff -C2 -d -r1.298 -r1.299
*** configure.in	19 Mar 2002 15:15:32 -0000	1.298
--- configure.in	21 Mar 2002 15:10:58 -0000	1.299
***************
*** 917,920 ****
--- 917,921 ----
  AC_CHECK_LIB(dl, dlopen)	# Dynamic linking for SunOS/Solaris and SYSV
  AC_CHECK_LIB(dld, shl_load)	# Dynamic linking for HP-UX
+ AC_CHECK_LIB(rt, sem_init)	# 'Real Time' functions on Solaris
  
  # checks for system dependent C++ extensions support

Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** pyconfig.h.in	20 Mar 2002 21:32:07 -0000	1.23
--- pyconfig.h.in	21 Mar 2002 15:10:58 -0000	1.24
***************
*** 107,113 ****
  
  /* This must be set to 64 on some systems to enable large file support */
- #ifndef _FILE_OFFSET_BITS
  #undef _FILE_OFFSET_BITS
- #endif
  
  /* Define if getpgrp() must be called as getpgrp(0). */
--- 107,111 ----
***************
*** 761,764 ****
--- 759,765 ----
  /* Define if you have the ieee library (-lieee).  */
  #undef HAVE_LIBIEEE
+ 
+ /* Define if you have the rt library (-lrt).  */
+ #undef HAVE_LIBRT
  
  #ifdef __CYGWIN__