All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/sngrep: add missing ncurses dependencies
@ 2017-02-18 15:43 Romain Naour
  2017-02-18 15:49 ` Thomas Petazzoni
  2017-02-21 21:41 ` Thomas Petazzoni
  0 siblings, 2 replies; 8+ messages in thread
From: Romain Naour @ 2017-02-18 15:43 UTC (permalink / raw)
  To: buildroot

ncurses panel and forms libraries are needed to build sngrep, otherwise
the configure script report the following errors:

Without panel library:
checking ncurses.h usability... yes
checking ncurses.h presence... yes
checking for ncurses.h... yes
checking for initscr in -lncurses... yes
checking for new_panel in -lpanel... no
configure: error:  You need to have ncurses panel library installed to compile sngrep.

Without form library:
checking ncurses.h usability... yes
checking ncurses.h presence... yes
checking for ncurses.h... yes
checking for initscr in -lncurses... yes
checking for new_panel in -lpanel... yes
checking for new_form in -lform... no
configure: error:  You need to have ncurses forms library installed to compile sngrep.

Fixes:
http://autobuild.buildroot.net/results/ee5/ee58cd4252e4da95e9bd025ced9ad3ba0fb7cb08

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Adam Duskett <aduskett@codeblue.com>
---
 package/sngrep/Config.in | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/sngrep/Config.in b/package/sngrep/Config.in
index 4d0d80c..70d2354 100644
--- a/package/sngrep/Config.in
+++ b/package/sngrep/Config.in
@@ -5,6 +5,8 @@ config BR2_PACKAGE_SNGREP
 	bool "sngrep"
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	select BR2_PACKAGE_NCURSES
+	select BR2_PACKAGE_NCURSES_TARGET_PANEL
+	select BR2_PACKAGE_NCURSES_TARGET_FORM
 	select BR2_PACKAGE_LIBPCAP
 	help
 	  sngrep is a tool for displaying SIP calls message flows from
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-02-21 21:41 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-18 15:43 [Buildroot] [PATCH] package/sngrep: add missing ncurses dependencies Romain Naour
2017-02-18 15:49 ` Thomas Petazzoni
2017-02-18 16:03   ` Romain Naour
2017-02-18 17:23     ` Thomas Petazzoni
2017-02-18 18:21   ` Bernd Kuhls
2017-02-18 19:09     ` Romain Naour
2017-02-19  9:01     ` Thomas Petazzoni
2017-02-21 21:41 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.