2022-05-25 15:35:44 +00:00
|
|
|
Index: openipmi-2.0.32.3+git.05faa36e/configure.ac
|
2018-09-07 16:03:04 +00:00
|
|
|
===================================================================
|
2022-05-25 15:35:44 +00:00
|
|
|
--- openipmi-2.0.32.3+git.05faa36e.orig/configure.ac
|
|
|
|
|
+++ openipmi-2.0.32.3+git.05faa36e/configure.ac
|
|
|
|
|
@@ -777,10 +777,12 @@ AX_CONFIG_FEATURE(
|
2020-01-26 22:05:19 +00:00
|
|
|
[epoll_pwait], [This platform supports epoll(7) with epoll_pwait(2)],
|
|
|
|
|
[HAVE_EPOLL_PWAIT], [This platform supports epoll(7) with epoll_pwait(2).])
|
2017-06-29 12:50:18 +00:00
|
|
|
|
|
|
|
|
-AC_CHECK_LIB(curses, tgetent, TERM_LIBS=-lcurses,
|
|
|
|
|
+PKG_CHECK_MODULES(ncurses, ncurses, TERM_LIBS=$ncurses_LIBS,
|
|
|
|
|
+ [AC_CHECK_LIB(tinfo, tgetent, TERM_LIBS=-ltinfo,
|
|
|
|
|
+ [AC_CHECK_LIB(curses, tgetent, TERM_LIBS=-lcurses,
|
|
|
|
|
[AC_CHECK_LIB(ncursesw, tgetent, TERM_LIBS=-lncursesw,
|
|
|
|
|
[AC_CHECK_LIB(ncurses, tgetent, TERM_LIBS=-lncurses,
|
|
|
|
|
- [AC_MSG_ERROR([libtermcap, libcurses or libncurses are required!])])] )] )
|
|
|
|
|
+ [AC_MSG_ERROR([libtinfo, libtermcap, libcurses or libncurses are required!])])] )] )] )] )
|
2020-01-26 22:05:19 +00:00
|
|
|
AC_SUBST(TERM_LIBS)
|
2017-06-29 12:50:18 +00:00
|
|
|
|
2020-01-26 22:05:19 +00:00
|
|
|
AC_CHECK_FUNCS(cfmakeraw)
|