[Python-checkins] CVS: python/dist/src acconfig.h,1.45,1.46 config.h.in,2.89,2.90 configure,1.202,1.203 configure.in,1.210,1.211

Guido van Rossum gvanrossum@users.sourceforge.net
Tue, 20 Mar 2001 05:09:17 -0800


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

Modified Files:
	acconfig.h config.h.in configure configure.in 
Log Message:
Get rid of --with-check-import-case.  (Jason Tishler, SF #409924)

Index: acconfig.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/acconfig.h,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -r1.45 -r1.46
*** acconfig.h	2001/03/06 12:09:07	1.45
--- acconfig.h	2001/03/20 13:09:13	1.46
***************
*** 20,26 ****
  #undef C_THREADS
  
- /* Defined when case of imported modules are checked against case of file. */
- #undef CHECK_IMPORT_CASE
- 
  /* Define to `long' if <time.h> doesn't define.  */
  #undef clock_t
--- 20,23 ----

Index: config.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/config.h.in,v
retrieving revision 2.89
retrieving revision 2.90
diff -C2 -r2.89 -r2.90
*** config.h.in	2001/03/06 12:09:07	2.89
--- config.h.in	2001/03/20 13:09:13	2.90
***************
*** 85,91 ****
  #undef C_THREADS
  
- /* Defined when case of imported modules are checked against case of file. */
- #undef CHECK_IMPORT_CASE
- 
  /* Define to `long' if <time.h> doesn't define.  */
  #undef clock_t
--- 85,88 ----

Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.202
retrieving revision 1.203
diff -C2 -r1.202 -r1.203
*** configure	2001/03/06 12:10:20	1.202
--- configure	2001/03/20 13:09:13	1.203
***************
*** 1,5 ****
  #! /bin/sh
  
! # From configure.in Revision: 1.210 
  
  # Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
  #! /bin/sh
  
! # From configure.in Revision: 1.211 
  
[...4176 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 6118 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
***************
*** 6186,6190 ****
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:6189: checking for build directories" >&5
  for dir in $SRCDIRS; do
      if test ! -d $dir; then
--- 6164,6168 ----
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:6167: 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.210
retrieving revision 1.211
diff -C2 -r1.210 -r1.211
*** configure.in	2001/03/06 12:09:07	1.210
--- configure.in	2001/03/20 13:09:14	1.211
***************
*** 1189,1204 ****
  [AC_MSG_RESULT(default LIBC=\"$LIBC\")])
  
- # check for --with-check-import-case
- AC_ARG_WITH(check-import-case,
- [  --with-check-import-case        enable imported module name case checking],,)
- AC_MSG_CHECKING(for --with-check-import-case)
- if test "$with_check_import_case"
- then
- 	AC_DEFINE(CHECK_IMPORT_CASE)
- 	AC_MSG_RESULT(yes)
- else
- 	AC_MSG_RESULT(no)
- fi
- 
  # check for hypot() in math library
  LIBS_SAVE=$LIBS
--- 1189,1192 ----