gambas-source-code/gb.ncurses/configure.ac
Benoît Minisini 643d230193 [GB.NCURSES]
* BUG: Do not call refresh routines when endwin() has already been called.
* NEW: Add an error hook that calls endwin() so that the terminal is reset
  and the error message is visible.


git-svn-id: svn://localhost/gambas/trunk@4622 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2012-04-13 22:11:24 +00:00

22 lines
408 B
Text

dnl ---- configure.ac for gb.ncurses
AC_INIT(configure.ac)
AC_CONFIG_MACRO_DIR([m4])
GB_INIT(gb.ncurses)
AC_PROG_LIBTOOL
GB_COMPONENT(
ncurses,
NCURSES,
[NCurses component],
[src],
[GB_FIND(ncurses.h panel.h, /usr/lib /usr, include)],
[GB_FIND(libncurses.$SHLIBEXT libpanel.$SHLIBEXT, /usr/local /usr, lib)],
[-lpanel -lncurses])
AC_OUTPUT( \
Makefile \
src/Makefile \
)
GB_PRINT_MESSAGES