mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 04:30:43 +00:00
check for pdcurses as well (for mingw: first port I found:) and correct the
check for curses.
This commit is contained in:
parent
7ca4383790
commit
654448a6cd
1 changed files with 6 additions and 3 deletions
|
@ -272,9 +272,12 @@ AC_SUBST(DL_LIBS)
|
|||
|
||||
AC_CHECK_LIB(ncurses, initscr,
|
||||
CURSES_LIBS=-lncurses,
|
||||
AC_CHECK_LIB(curses, initscr,
|
||||
CURSES_LIBS=-ncurses,
|
||||
CURSES_LIBS=
|
||||
AC_CHECK_LIB(pdcurses, initscr,
|
||||
CURSES_LIBS=-lpdcurses,
|
||||
AC_CHECK_LIB(curses, initscr,
|
||||
CURSES_LIBS=-lcurses,
|
||||
CURSES_LIBS=
|
||||
)
|
||||
)
|
||||
)
|
||||
AC_SUBST(CURSES_LIBS)
|
||||
|
|
Loading…
Reference in a new issue