mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-05 02:54:25 +03:00
buildsys: fix broken detection for termcap libraries when using slang
Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
This commit is contained in:
parent
61b22eb606
commit
57dddea47c
@ -5,7 +5,13 @@ AC_DEFUN([mc_USE_TERMCAP], [
|
|||||||
screen_msg="$screen_msg with termcap database"
|
screen_msg="$screen_msg with termcap database"
|
||||||
AC_MSG_NOTICE([using S-Lang screen library with termcap])
|
AC_MSG_NOTICE([using S-Lang screen library with termcap])
|
||||||
AC_DEFINE(USE_TERMCAP, 1, [Define to use termcap database])
|
AC_DEFINE(USE_TERMCAP, 1, [Define to use termcap database])
|
||||||
AC_CHECK_LIB(termcap, tgoto, [MCLIBS="$MCLIBS -ltermcap"], , [$LIBS])
|
|
||||||
|
ac_save_LIBS="$LIBS"
|
||||||
|
AC_SEARCH_LIBS([tgoto], [termcap xcurses curses],
|
||||||
|
[MCLIBS="$MCLIBS $ac_cv_search_tgoto"],
|
||||||
|
[AC_MSG_ERROR([Could not find a library providing tgoto])]
|
||||||
|
)
|
||||||
|
LIBS="$ac_save_LIBS"
|
||||||
])
|
])
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
|
@ -16,9 +16,6 @@ AC_DEFUN([mc_WITH_SLANG], [
|
|||||||
dnl Check if termcap is needed.
|
dnl Check if termcap is needed.
|
||||||
if test x"$found_slang" = x"yes"; then
|
if test x"$found_slang" = x"yes"; then
|
||||||
mc_SLANG_TERMCAP
|
mc_SLANG_TERMCAP
|
||||||
if test x"$mc_cv_slang_termcap" = x"yes"; then
|
|
||||||
MCLIBS="$MCLIBS -ltermcap"
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
screen_type=slang
|
screen_type=slang
|
||||||
|
Loading…
Reference in New Issue
Block a user