diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-02-19 10:55:19 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-02-19 10:55:19 (GMT) |
commit | 382abeff0f1a53ffaaddfea06e8721bf42b66502 (patch) | |
tree | b59671b10eefc9082b426aa1d5c4304e26fbb9db /pyconfig.h.in | |
parent | 0713a68dc55f355df8fa0ecd6fd4ccb9c03b7e7c (diff) | |
download | cpython-382abeff0f1a53ffaaddfea06e8721bf42b66502.zip cpython-382abeff0f1a53ffaaddfea06e8721bf42b66502.tar.gz cpython-382abeff0f1a53ffaaddfea06e8721bf42b66502.tar.bz2 |
Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()
functions on platforms where the underlying system calls are available.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 2e8f4bf..d5dafc1 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -67,6 +67,9 @@ /* Define this if you have the type _Bool. */ #undef HAVE_C99_BOOL +/* Define to 1 if you have the `chflags' function. */ +#undef HAVE_CHFLAGS + /* Define to 1 if you have the `chown' function. */ #undef HAVE_CHOWN @@ -290,6 +293,9 @@ Solaris and Linux, the necessary defines are already defined.) */ #undef HAVE_LARGEFILE_SUPPORT +/* Define to 1 if you have the `lchflags' function. */ +#undef HAVE_LCHFLAGS + /* Define to 1 if you have the `lchown' function. */ #undef HAVE_LCHOWN |