[Python-checkins] python/dist/src configure,1.346,1.347 configure.in,1.357,1.358 pyconfig.h.in,1.54,1.55

loewis@users.sourceforge.net loewis@users.sourceforge.net
Wed, 16 Oct 2002 13:28:26 -0700


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

Modified Files:
	configure configure.in pyconfig.h.in 
Log Message:
Patch #623780: Replace obsolete struct macros.


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.346
retrieving revision 1.347
diff -C2 -d -r1.346 -r1.347
*** configure	11 Oct 2002 05:37:58 -0000	1.346
--- configure	16 Oct 2002 20:28:22 -0000	1.347
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.356 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.357 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53.
***************
*** 13334,13338 ****
  fi
  
- 
  echo "$as_me:$LINENO: checking for struct stat.st_rdev" >&5
  echo $ECHO_N "checking for struct stat.st_rdev... $ECHO_C" >&6
--- 13334,13337 ----
***************
*** 13389,13400 ****
  
  
- cat >>confdefs.h <<\_ACEOF
- #define HAVE_ST_RDEV 1
- _ACEOF
- 
  fi
  
- 
- 
  echo "$as_me:$LINENO: checking for struct stat.st_blksize" >&5
  echo $ECHO_N "checking for struct stat.st_blksize... $ECHO_C" >&6
--- 13388,13393 ----
***************
*** 13451,13460 ****
  
  
- cat >>confdefs.h <<\_ACEOF
- #define HAVE_ST_BLKSIZE 1
- _ACEOF
- 
  fi
- 
  
  echo "$as_me:$LINENO: checking for struct stat.st_blocks" >&5
--- 13444,13448 ----

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.357
retrieving revision 1.358
diff -C2 -d -r1.357 -r1.358
*** configure.in	11 Oct 2002 05:37:59 -0000	1.357
--- configure.in	16 Oct 2002 20:28:24 -0000	1.358
***************
*** 1861,1866 ****
  AC_STRUCT_TM
  AC_STRUCT_TIMEZONE
! AC_STRUCT_ST_RDEV
! AC_STRUCT_ST_BLKSIZE
  AC_STRUCT_ST_BLOCKS
  
--- 1861,1866 ----
  AC_STRUCT_TM
  AC_STRUCT_TIMEZONE
! AC_CHECK_MEMBERS([struct stat.st_rdev])
! AC_CHECK_MEMBERS([struct stat.st_blksize])
  AC_STRUCT_ST_BLOCKS
  

Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -d -r1.54 -r1.55
*** pyconfig.h.in	11 Oct 2002 05:37:59 -0000	1.54
--- pyconfig.h.in	16 Oct 2002 20:28:24 -0000	1.55
***************
*** 441,455 ****
  #undef HAVE_STRUCT_TM_TM_ZONE
  
- /* Define to 1 if your `struct stat' has `st_blksize'. Deprecated, use
-    `HAVE_STRUCT_STAT_ST_BLKSIZE' instead. */
- #undef HAVE_ST_BLKSIZE
- 
  /* Define to 1 if your `struct stat' has `st_blocks'. Deprecated, use
     `HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
  #undef HAVE_ST_BLOCKS
- 
- /* Define to 1 if your `struct stat' has `st_rdev'. Deprecated, use
-    `HAVE_STRUCT_STAT_ST_RDEV' instead. */
- #undef HAVE_ST_RDEV
  
  /* Define to 1 if you have the `symlink' function. */
--- 441,447 ----