diff options
author | Jesus Cea <jcea@jcea.es> | 2011-11-14 18:07:41 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2011-11-14 18:07:41 (GMT) |
commit | d8b9ae6e8f6d9a562ccdf4700d24c0155979fb4f (patch) | |
tree | c4b426e7c29b2547e789557cbfb649aacbab2cc8 /configure.in | |
parent | d5d4406c8ebbbdf8a8961fc119be22b15a1c40ad (diff) | |
download | cpython-d8b9ae6e8f6d9a562ccdf4700d24c0155979fb4f.zip cpython-d8b9ae6e8f6d9a562ccdf4700d24c0155979fb4f.tar.gz cpython-d8b9ae6e8f6d9a562ccdf4700d24c0155979fb4f.tar.bz2 |
Issue #6397: Support '/dev/poll' polling objects in select module, under Solaris & derivatives.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 7b0a88b..532ec92 100644 --- a/configure.in +++ b/configure.in @@ -1329,12 +1329,13 @@ dnl AC_MSG_RESULT($cpp_type) AC_HEADER_STDC AC_CHECK_HEADERS(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 \ +ieeefp.h io.h langinfo.h libintl.h ncurses.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/xattr.h sys/bsdtty.h sys/epoll.h sys/event.h sys/file.h sys/loadavg.h \ +poll.h sys/devpoll.h sys/epoll.h sys/poll.h \ +sys/audioio.h sys/xattr.h sys/bsdtty.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/param.h sys/select.h sys/sendfile.h sys/socket.h sys/statvfs.h \ sys/stat.h sys/termio.h sys/time.h \ sys/times.h sys/types.h sys/uio.h sys/un.h sys/utsname.h sys/wait.h pty.h \ libutil.h sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \ |