From: Gustavo Zacarias Date: Wed, 12 Mar 2014 00:30:43 +0000 (-0300) Subject: httping: disable ncurses support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ea6d850891bb4d936bcf1bddbf5432b819d5785;p=buildroot.git httping: disable ncurses support The new version requires ncursesw support so disable it until we've got support for it. Fixes: http://autobuild.buildroot.net/results/588/58840df1254034bf77cde3935fd900d1da13de56/ Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/httping/httping.mk b/package/httping/httping.mk index dd8abb39a8..42d694f74a 100644 --- a/package/httping/httping.mk +++ b/package/httping/httping.mk @@ -13,11 +13,10 @@ HTTPING_LDFLAGS = $(if $(BR2_NEEDS_GETTEXT),-lintl) $(TARGET_LDFLAGS) HTTPING_DEPENDENCIES = \ $(if $(BR2_NEEDS_GETTEXT),gettext) \ $(if $(BR2_PACKAGE_OPENSSL),openssl) \ - $(if $(BR2_PACKAGE_NCURSES),ncurses) \ $(if $(BR2_PACKAGE_FFTW),fftw) HTTPING_MAKE_OPT = $(TARGET_CONFIGURE_OPTS) \ FW=$(if $(BR2_PACKAGE_FFTW),yes,no) \ - NC=$(if $(BR2_PACKAGE_NCURSES),yes,no) \ + NC=no \ SSL=$(if $(BR2_PACKAGE_OPENSSL),yes,no) \ TFO=$(if $(BR2_PACKAGE_HTTPING_TFO),yes,no)