mc-use-termcap.m4 1004 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. dnl
  2. dnl Try using termcap database and link with libtermcap if possible.
  3. dnl
  4. AC_DEFUN([mc_USE_TERMCAP], [
  5. screen_msg="$screen_msg with termcap database"
  6. AC_MSG_NOTICE([using S-Lang screen library with termcap])
  7. AC_DEFINE(USE_TERMCAP, 1, [Define to use termcap database])
  8. ac_save_LIBS="$LIBS"
  9. AC_SEARCH_LIBS([tgoto], [termcap xcurses curses],
  10. [MCLIBS="$MCLIBS $ac_cv_search_tgoto"],
  11. [AC_MSG_ERROR([Could not find a library providing tgoto])]
  12. )
  13. LIBS="$ac_save_LIBS"
  14. ])
  15. dnl
  16. dnl Check if the installed S-Lang library uses termcap
  17. dnl
  18. AC_DEFUN([mc_SLANG_TERMCAP], [
  19. unset ac_cv_lib_termcap_tgoto
  20. AC_CACHE_CHECK([if S-Lang uses termcap], [mc_cv_slang_termcap], [
  21. ac_save_LIBS="$LIBS"
  22. LIBS="$LIBS -lslang"
  23. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  24. #include <slang.h>
  25. ]],
  26. [[SLtt_get_terminfo(); SLtt_tgetflag((char*)"");]])],
  27. [mc_cv_slang_termcap=no], [mc_cv_slang_termcap=yes])
  28. LIBS="$ac_save_LIBS"
  29. ])
  30. if test x"$mc_cv_slang_termcap" = xyes; then
  31. mc_USE_TERMCAP
  32. fi
  33. ])