Ticket #2129: fix build with static GLib.
[midnight-commander.git] / lib / tty / tty-ncurses.h
blob5f658ff9d129f113f4c20563d10678e2c61b2cb5
2 #ifndef MC__TTY_NCURSES_H
3 #define MC__TTY_NCURSES_H
5 #ifdef USE_NCURSES
6 #ifdef HAVE_NCURSES_CURSES_H
7 #include <ncurses/curses.h>
8 #elif HAVE_NCURSES_NCURSES_H || HAVE_NCURSESW_CURSES_H
9 #include <ncurses/ncurses.h>
10 #elif HAVE_NCURSES_HCURSES_H || HAVE_NCURSES_H
11 #include <ncurses.h>
12 #else
13 #include <curses.h>
14 #endif
15 #endif /* USE_NCURSES */
17 #ifdef USE_NCURSESW
18 #include <ncursesw/curses.h>
19 #endif /* USE_NCURSESW */
21 /*** typedefs(not structures) and defined constants **********************************************/
23 /*** enums ***************************************************************************************/
25 /*** structures declarations (and typedefs of structures)*****************************************/
27 /*** global variables defined in .c file *********************************************************/
29 /*** declarations of public functions ************************************************************/
31 /*** inline functions ****************************************************************************/
33 #endif /* MC_TTY_NCURSES_H */