diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-09-13 21:20:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-09-13 21:20:47 (GMT) |
commit | b77fe173203139af07eaee17c3540ae8fdd3a672 (patch) | |
tree | be2ab63a689af7bd4262a456134f35f1d096dc86 /pyconfig.h.in | |
parent | 3ac4f59a82ad7caec46d35293fe974013cfe5925 (diff) | |
download | cpython-b77fe173203139af07eaee17c3540ae8fdd3a672.zip cpython-b77fe173203139af07eaee17c3540ae8fdd3a672.tar.gz cpython-b77fe173203139af07eaee17c3540ae8fdd3a672.tar.bz2 |
Use xattr functions from sys/xattr.h instead of attr/xattr.h (closes #12720)
sys/xattr.h is glibc while attr/xattr.h is a separate library.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index edc2e69..5aac4c5 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -64,9 +64,6 @@ /* Define if GCC supports __attribute__((format(PyArg_ParseTuple, 2, 3))) */ #undef HAVE_ATTRIBUTE_FORMAT_PARSETUPLE -/* Define to 1 if you have the <attr/xattr.h> header file. */ -#undef HAVE_ATTR_XATTR_H - /* Define to 1 if you have the `bind_textdomain_codeset' function. */ #undef HAVE_BIND_TEXTDOMAIN_CODESET @@ -948,6 +945,9 @@ /* Define to 1 if you have the <sys/wait.h> header file. */ #undef HAVE_SYS_WAIT_H +/* Define to 1 if you have the <sys/xattr.h> header file. */ +#undef HAVE_SYS_XATTR_H + /* Define to 1 if you have the `tcgetpgrp' function. */ #undef HAVE_TCGETPGRP @@ -1312,7 +1312,7 @@ this defined. */ #undef _POSIX_1_SOURCE -/* Define to activate features from IEEE Stds 1003.1-2001 */ +/* Define to activate features from IEEE Stds 1003.1-2008 */ #undef _POSIX_C_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ |