diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-09-20 15:30:20 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-09-20 15:30:20 (GMT) |
commit | a64988c001d21335d47451586654702caec8aa1f (patch) | |
tree | 6de8660f39ad83f8a4ee6cb74c7339c0dafde447 /pyconfig.h.in | |
parent | 212ede6cbf2ce9277d6e5bced1137ec5914cc421 (diff) | |
download | cpython-a64988c001d21335d47451586654702caec8aa1f.zip cpython-a64988c001d21335d47451586654702caec8aa1f.tar.gz cpython-a64988c001d21335d47451586654702caec8aa1f.tar.bz2 |
Check for declarations of fchdir and fsync. Fixes #800710. Backported to 2.3.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 9df836f..6c0a744 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -96,13 +96,13 @@ /* Define to 1 if you have the `execv' function. */ #undef HAVE_EXECV -/* Define to 1 if you have the `fchdir' function. */ +/* Define if you have the 'fchdir' function. */ #undef HAVE_FCHDIR /* Define to 1 if you have the <fcntl.h> header file. */ #undef HAVE_FCNTL_H -/* Define to 1 if you have the `fdatasync' function. */ +/* Define if you have the 'fdatasync' function. */ #undef HAVE_FDATASYNC /* Define if you have the 'flock' function. */ @@ -126,9 +126,6 @@ /* Define to 1 if you have the `fstatvfs' function. */ #undef HAVE_FSTATVFS -/* Define to 1 if you have the `fsync' function. */ -#undef HAVE_FSYNC - /* Define to 1 if you have the `ftell64' function. */ #undef HAVE_FTELL64 @@ -488,6 +485,9 @@ /* Define if you have the 'symlink' function. */ #undef HAVE_SYMLINK +/* Define if you have the 'fsync' function. */ +#undef HAVE_SYNC + /* Define to 1 if you have the `sysconf' function. */ #undef HAVE_SYSCONF |