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 /configure | |
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 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6090,12 +6090,12 @@ $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi -for ac_header in asm/types.h attr/xattr.h conio.h curses.h direct.h dlfcn.h errno.h \ +for ac_header in asm/types.h conio.h curses.h direct.h dlfcn.h errno.h \ fcntl.h grp.h \ ieeefp.h io.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h \ sched.h shadow.h signal.h stdint.h stropts.h termios.h \ unistd.h utime.h \ -sys/audioio.h sys/bsdtty.h sys/epoll.h sys/event.h sys/file.h sys/loadavg.h \ +sys/audioio.h sys/xattr.h sys/bsdtty.h sys/epoll.h sys/event.h sys/file.h sys/loadavg.h \ sys/lock.h sys/mkdev.h sys/modem.h \ sys/param.h sys/poll.h sys/select.h sys/sendfile.h sys/socket.h sys/statvfs.h \ sys/stat.h sys/termio.h sys/time.h \ |