Message137577
| 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:21 | Arfrever | set | recipients: + Arfrever, r.david.murray, rosslagerwall |
| 2011-06-03 19:54:21 | Arfrever | set | messageid: <1307130861.47.0.926853780316.issue11941@psf.upfronthosting.co.za> |
| 2011-06-03 19:54:20 | Arfrever | link | issue11941 messages |
| 2011-06-03 19:54:20 | Arfrever | create | |