5516N/A# If bash uses ncurses, then its own copy of libreadline should
5516N/A# use ncurses too.
5516N/A# Solaris-specific. On Linux, the <ncurses.h> header file is named
5516N/A# <curses.h>.
5516N/A# We should submit this upstream.
5516N/A--- lib/readline/display.c 2015-04-02 11:04:32.395423459 -0700
5516N/A+++ lib/readline/display.c 2015-04-02 11:05:13.614898815 -0700
5516N/A@@ -41,6 +41,10 @@
5516N/A
5516N/A #include <stdio.h>
5516N/A
5516N/A+#if defined(SOLARIS)
5516N/A+# include <ncurses/ncurses.h>
5516N/A+#endif
5516N/A+
5516N/A #ifdef __MSDOS__
5516N/A # include <pc.h>
5516N/A #endif