This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Arfrever
Recipients Arfrever, r.david.murray, rosslagerwall
Date 2011-06-03.19:54:20
SpamBayes Score 0.079761066
Marked as misclassified No
Message-id <1307130861.47.0.926853780316.issue11941@psf.upfronthosting.co.za>
In-reply-to
Content
st_atim, st_mtim and st_ctim were introduced in 2008 version of POSIX (and were earlier provided by glibc as an extension). To avoid compilation failure with some exotic versions of libc, I suggest:
- In configure.in:
AC_CHECK_MEMBERS([struct stat.st_atim])
AC_CHECK_MEMBERS([struct stat.st_ctim])
AC_CHECK_MEMBERS([struct stat.st_mtim])
- In Modules/posixmodule.c:
    PyObject *atim = Py_BuildValue(_STAT_FMT,
                            st->st_atime,
#ifdef HAVE_STRUCT_STAT_ST_ATIM
                            st->st_atim.tv_nsec
#else
                            0
#endif
                            );
...
History
Date User Action Args
2011-06-03 19:54:21Arfreversetrecipients: + Arfrever, r.david.murray, rosslagerwall
2011-06-03 19:54:21Arfreversetmessageid: <1307130861.47.0.926853780316.issue11941@psf.upfronthosting.co.za>
2011-06-03 19:54:20Arfreverlinkissue11941 messages
2011-06-03 19:54:20Arfrevercreate