mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-07 00:11:39 +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,
|
AC_CHECK_LIB(ncurses, initscr,
|
||||||
CURSES_LIBS=-lncurses,
|
CURSES_LIBS=-lncurses,
|
||||||
AC_CHECK_LIB(curses, initscr,
|
AC_CHECK_LIB(pdcurses, initscr,
|
||||||
CURSES_LIBS=-ncurses,
|
CURSES_LIBS=-lpdcurses,
|
||||||
CURSES_LIBS=
|
AC_CHECK_LIB(curses, initscr,
|
||||||
|
CURSES_LIBS=-lcurses,
|
||||||
|
CURSES_LIBS=
|
||||||
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
AC_SUBST(CURSES_LIBS)
|
AC_SUBST(CURSES_LIBS)
|
||||||
|
|
Loading…
Reference in a new issue