[Python-checkins] python/dist/src configure, 1.416.4.5, 1.416.4.6 configure.in, 1.427.4.5, 1.427.4.6 pyconfig.h.in, 1.83.4.2, 1.83.4.3

montanaro at users.sourceforge.net montanaro at users.sourceforge.net
Thu Sep 25 11:21:06 EDT 2003


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv29772

Modified Files:
      Tag: release23-maint
	configure configure.in pyconfig.h.in 
Log Message:
backport of HAVE_FSYNC fix


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.416.4.5
retrieving revision 1.416.4.6
diff -C2 -d -r1.416.4.5 -r1.416.4.6
*** configure	20 Sep 2003 15:29:40 -0000	1.416.4.5
--- configure	25 Sep 2003 15:20:55 -0000	1.416.4.6
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.427.4.4 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.57 for python 2.3.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.427.4.5 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.57 for python 2.3.
***************
*** 13385,13389 ****
  
  cat >>confdefs.h <<\_ACEOF
! #define HAVE_SYNC 1
  _ACEOF
  
--- 13385,13389 ----
  
  cat >>confdefs.h <<\_ACEOF
! #define HAVE_FSYNC 1
  _ACEOF
  

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.427.4.5
retrieving revision 1.427.4.6
diff -C2 -d -r1.427.4.5 -r1.427.4.6
*** configure.in	20 Sep 2003 15:29:42 -0000	1.427.4.5
--- configure.in	25 Sep 2003 15:21:00 -0000	1.427.4.6
***************
*** 2094,2098 ****
  AC_MSG_CHECKING(for fsync)
  AC_TRY_COMPILE([#include <unistd.h>], void *x=fsync,
!   AC_DEFINE(HAVE_SYNC, 1, Define if you have the 'fsync' function.)
    AC_MSG_RESULT(yes),
    AC_MSG_RESULT(no)
--- 2094,2098 ----
  AC_MSG_CHECKING(for fsync)
  AC_TRY_COMPILE([#include <unistd.h>], void *x=fsync,
!   AC_DEFINE(HAVE_FSYNC, 1, Define if you have the 'fsync' function.)
    AC_MSG_RESULT(yes),
    AC_MSG_RESULT(no)

Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.83.4.2
retrieving revision 1.83.4.3
diff -C2 -d -r1.83.4.2 -r1.83.4.3
*** pyconfig.h.in	20 Sep 2003 15:29:42 -0000	1.83.4.2
--- pyconfig.h.in	25 Sep 2003 15:21:00 -0000	1.83.4.3
***************
*** 487,491 ****
  
  /* Define if you have the 'fsync' function. */
! #undef HAVE_SYNC
  
  /* Define to 1 if you have the `sysconf' function. */
--- 487,491 ----
  
  /* Define if you have the 'fsync' function. */
! #undef HAVE_FSYNC
  
  /* Define to 1 if you have the `sysconf' function. */





More information about the Python-checkins mailing list