diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-08-09 15:00:59 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-08-09 15:00:59 (GMT) |
commit | ebd9d5ba1abc432f3a11b99ac32657b4cea7ecfd (patch) | |
tree | f6ac9d05bb7227ea9bbccf8612e6e6b6553abe90 /pyconfig.h.in | |
parent | 147fbe5a558094f5690636476ca8da648703141a (diff) | |
download | cpython-ebd9d5ba1abc432f3a11b99ac32657b4cea7ecfd.zip cpython-ebd9d5ba1abc432f3a11b99ac32657b4cea7ecfd.tar.gz cpython-ebd9d5ba1abc432f3a11b99ac32657b4cea7ecfd.tar.bz2 |
Patch #1180695: Implement nanosecond stat resolution on FreeBSD,
add st_gen, st_birthtime.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index a60e4da..47723de 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -455,6 +455,9 @@ /* Define if you have struct stat.st_mtim.tv_nsec */ #undef HAVE_STAT_TV_NSEC +/* Define if you have struct stat.st_mtimensec */ +#undef HAVE_STAT_TV_NSEC2 + /* Define if your compiler supports variable length function prototypes (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */ #undef HAVE_STDARG_PROTOTYPES @@ -483,6 +486,9 @@ /* Define to 1 if you have the <stropts.h> header file. */ #undef HAVE_STROPTS_H +/* Define to 1 if `st_birthtime' is member of `struct stat'. */ +#undef HAVE_STRUCT_STAT_ST_BIRTHTIME + /* Define to 1 if `st_blksize' is member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_BLKSIZE @@ -492,6 +498,9 @@ /* Define to 1 if `st_flags' is member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_FLAGS +/* Define to 1 if `st_gen' is member of `struct stat'. */ +#undef HAVE_STRUCT_STAT_ST_GEN + /* Define to 1 if `st_rdev' is member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_RDEV |