You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/sngrep/files/sngrep-1.4.7-tinfo.patch

25 lines
699 B

--- a/configure.ac
+++ b/configure.ac
@@ -74,6 +74,10 @@
AC_CHECK_LIB([menuw], [new_item], [], [
AC_MSG_ERROR([ You need to have ncurses menuw library installed to compile sngrep.])
])
+
+ AC_SEARCH_LIBS([keyname], [tinfow], [], [
+ AC_MSG_ERROR([ You need to have ncurses tinfow library installed to compile sngrep.])
+ ])
], [
# Ncurses without wide-character support
@@ -96,6 +100,10 @@
AC_CHECK_LIB([menu], [new_item], [], [
AC_MSG_ERROR([ You need to have ncurses menu library installed to compile sngrep.])
])
+
+ AC_SEARCH_LIBS([keyname], [tinfo], [], [
+ AC_MSG_ERROR([ You need to have ncurses tinfo library installed to compile sngrep.])
+ ])
])
####