diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-05-16 07:05:37 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-05-16 07:05:37 (GMT) |
commit | 5f5d99c21521972baee65c99ae8b02e9339b8ed3 (patch) | |
tree | 770712510e8f399bf64cde1abe34fcb244a0456e /pyconfig.h.in | |
parent | 4ccc0b7dfe7966e85c51a091b655622f6bbe05b1 (diff) | |
download | cpython-5f5d99c21521972baee65c99ae8b02e9339b8ed3.zip cpython-5f5d99c21521972baee65c99ae8b02e9339b8ed3.tar.gz cpython-5f5d99c21521972baee65c99ae8b02e9339b8ed3.tar.bz2 |
- Test for sys/statvfs.h before including it, as statvfs is present
on some OSX installation, but its header file is not.
Will backport to 2.4
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index acbbd8d..df3c1cd 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -579,6 +579,9 @@ /* Define to 1 if you have the <sys/socket.h> header file. */ #undef HAVE_SYS_SOCKET_H +/* Define to 1 if you have the <sys/statvfs.h> header file. */ +#undef HAVE_SYS_STATVFS_H + /* Define to 1 if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H |