perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / shell / bash / patches / solaris-026.libreadline.display.c.patch
blobb38ed7ec8b064d55622638392daf066afa259024
1 # If bash uses ncurses, then its own copy of libreadline should
2 # use ncurses too.
3 # Solaris-specific. On Linux, the <ncurses.h> header file is named
4 # <curses.h>.
5 # We should submit this upstream.
6 --- lib/readline/display.c 2015-04-02 11:04:32.395423459 -0700
7 +++ lib/readline/display.c 2015-04-02 11:05:13.614898815 -0700
8 @@ -41,6 +41,10 @@
10 #include <stdio.h>
12 +#if defined(SOLARIS)
13 +# include <ncurses/ncurses.h>
14 +#endif
16 #ifdef __MSDOS__
17 # include <pc.h>
18 #endif