diff options
author | Ned Deily <nad@acm.org> | 2011-06-28 06:41:53 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-06-28 06:41:53 (GMT) |
commit | 43e1054e38ebd3de91b51531cda8e2fd580c0207 (patch) | |
tree | 36d713b9f71d61c3bb5009f4ed907af08db86dc0 /pyconfig.h.in | |
parent | 64e59959f21711bc3db36230eccfaa485faf34f9 (diff) | |
download | cpython-43e1054e38ebd3de91b51531cda8e2fd580c0207.zip cpython-43e1054e38ebd3de91b51531cda8e2fd580c0207.tar.gz cpython-43e1054e38ebd3de91b51531cda8e2fd580c0207.tar.bz2 |
Issue #8746: Correct faulty configure checks so that os.chflags() and
os.lchflags() are once again built on systems that support these
functions (*BSD and OS X). Also add new stat file flags for OS X
(UF_HIDDEN and UF_COMPRESSED). Also add additional tests for
os.chflags() and os.lchflags(). (Tests by Garrett Cooper)
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 65ad7ac..9d340f6 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -100,7 +100,7 @@ /* Define this if you have the type _Bool. */ #undef HAVE_C99_BOOL -/* Define to 1 if you have the `chflags' function. */ +/* Define to 1 if you have the 'chflags' function. */ #undef HAVE_CHFLAGS /* Define to 1 if you have the `chown' function. */ @@ -391,7 +391,7 @@ Solaris and Linux, the necessary defines are already defined.) */ #undef HAVE_LARGEFILE_SUPPORT -/* Define to 1 if you have the `lchflags' function. */ +/* Define to 1 if you have the 'lchflags' function. */ #undef HAVE_LCHFLAGS /* Define to 1 if you have the `lchmod' function. */ @@ -1137,6 +1137,9 @@ /* This must be defined on some systems to enable large file support. */ #undef _LARGEFILE_SOURCE +/* This must be defined on AIX systems to enable large file support. */ +#undef _LARGE_FILES + /* Define to 1 if on MINIX. */ #undef _MINIX |