diff options
author | Ned Deily <nad@acm.org> | 2011-06-28 07:13:01 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-06-28 07:13:01 (GMT) |
commit | 8b56c4b1b82898ffd7e6337c39068c93e21e8d31 (patch) | |
tree | f70a99badeaf4276217cd141841e5d0509d70183 /pyconfig.h.in | |
parent | f6837aa1714ff331346522c6698573d9d32aa43e (diff) | |
parent | 3eb67d58d61cec42c09242a7d801072c3e448dcf (diff) | |
download | cpython-8b56c4b1b82898ffd7e6337c39068c93e21e8d31.zip cpython-8b56c4b1b82898ffd7e6337c39068c93e21e8d31.tar.gz cpython-8b56c4b1b82898ffd7e6337c39068c93e21e8d31.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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index d2af3e9..c747306 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -101,7 +101,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. */ @@ -428,7 +428,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. */ |