2009-05-10 19:01:15 +04:00
|
|
|
|
|
|
|
#ifndef MC_TTY_NCURSES_H
|
|
|
|
#define MC_TTY_NCURSES_H
|
|
|
|
|
|
|
|
#ifdef USE_NCURSES
|
|
|
|
# ifdef HAVE_NCURSES_CURSES_H
|
|
|
|
# include <ncurses/curses.h>
|
2010-01-17 15:51:07 +03:00
|
|
|
# elif HAVE_NCURSES_NCURSES_H
|
|
|
|
# include <ncurses/ncurses.h>
|
2009-05-10 19:01:15 +04:00
|
|
|
# elif HAVE_NCURSESW_CURSES_H
|
|
|
|
# include <ncursesw/curses.h>
|
2010-01-17 15:51:07 +03:00
|
|
|
# elif HAVE_NCURSES_HCURSES_H
|
|
|
|
# include <ncurses.h>
|
2009-05-10 19:01:15 +04:00
|
|
|
# elif HAVE_NCURSES_H
|
|
|
|
# include <ncurses.h>
|
|
|
|
# else
|
|
|
|
# include <curses.h>
|
|
|
|
# endif
|
2009-09-17 02:07:04 +04:00
|
|
|
#endif /* USE_NCURSES */
|
2009-05-10 19:01:15 +04:00
|
|
|
|
|
|
|
#ifdef USE_NCURSESW
|
|
|
|
# include <ncursesw/curses.h>
|
2009-09-17 02:07:04 +04:00
|
|
|
#endif /* USE_NCURSESW */
|
2009-05-10 19:01:15 +04:00
|
|
|
|
2009-09-17 02:07:04 +04:00
|
|
|
#endif /* MC_TTY_NCURSES_H */
|