diff -r c9c877086d8b Misc/ACKS --- a/Misc/ACKS Sun Mar 24 15:21:57 2013 -0700 +++ b/Misc/ACKS Sat Mar 30 00:18:42 2013 +0000 @@ -886,6 +886,7 @@ Michal Nowikowski Steffen Daode Nurpmeso Nigel O'Brian +Ken O'Brien John O'Connor Kevin O'Connor Tim O'Malley diff -r c9c877086d8b Modules/_curses_panel.c --- a/Modules/_curses_panel.c Sun Mar 24 15:21:57 2013 -0700 +++ b/Modules/_curses_panel.c Sat Mar 30 00:18:42 2013 +0000 @@ -14,7 +14,11 @@ #include "py_curses.h" -#include +#ifdef HAVE_NCURSES_PANEL_H + #include +#else + #include +#endif typedef struct { PyObject *PyCursesError; diff -r c9c877086d8b configure.ac --- a/configure.ac Sun Mar 24 15:21:57 2013 -0700 +++ b/configure.ac Sat Mar 30 00:18:42 2013 +0000 @@ -1518,7 +1518,8 @@ CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw" 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 process.h pthread.h \ +ieeefp.h io.h langinfo.h libintl.h ncurses.h panel.h ncurses/panel.h \ +process.h pthread.h \ sched.h shadow.h signal.h stdint.h stropts.h termios.h \ unistd.h utime.h \ poll.h sys/devpoll.h sys/epoll.h sys/poll.h \