[Python-checkins] CVS: python/dist/src/Objects fileobject.c,2.91,2.92
Guido van Rossum
python-dev@python.org
2000年11月13日 11:48:25 -0800
Update of /cvsroot/python/python/dist/src/Objects
In directory slayer.i.sourceforge.net:/tmp/cvs-serv4689
Modified Files:
fileobject.c
Log Message:
Added _HAVE_BSDI and __APPLE__ to the list of platforms that require a
hack for TELL64()... Sounds like there's something else going on
really. Does anybody have a clue I can buy?
Index: fileobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/fileobject.c,v
retrieving revision 2.91
retrieving revision 2.92
diff -C2 -r2.91 -r2.92
*** fileobject.c 2000年10月24日 19:57:45 2.91
--- fileobject.c 2000年11月13日 19:48:22 2.92
***************
*** 59,63 ****
#if defined(MS_WIN64)
#define TELL64 _telli64
! #elif defined(__NetBSD__) || defined(__OpenBSD__)
/* NOTE: this is only used on older
NetBSD prior to f*o() funcions */
--- 59,63 ----
#if defined(MS_WIN64)
#define TELL64 _telli64
! #elif defined(__NetBSD__) || defined(__OpenBSD__) || defined(_HAVE_BSDI) || defined(__APPLE__)
/* NOTE: this is only used on older
NetBSD prior to f*o() funcions */