mc: prevent from picking up ncursesw

mc will link against ncursesw instead of ncurses if it finds it. Make sure
it always links only against ncurses.

Closes #9225 and #9315.

Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@27719 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
luka 2011-07-21 23:26:27 +00:00
parent 88e30ab89e
commit ea6e292d3f

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=mc PKG_NAME:=mc
PKG_VERSION:=4.7.5.2 PKG_VERSION:=4.7.5.2
PKG_RELEASE:=2 PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.midnight-commander.org/downloads/ PKG_SOURCE_URL:=http://www.midnight-commander.org/downloads/
@ -45,7 +45,8 @@ CONFIGURE_ARGS += \
--without-edit \ --without-edit \
--without-gpm-mouse \ --without-gpm-mouse \
--without-subshell \ --without-subshell \
--without-x --without-x \
ac_cv_search_addwstr=no
AM_HOST=$(firstword $(wildcard $(STAGING_DIR_HOST)/share/automake-*)) AM_HOST=$(firstword $(wildcard $(STAGING_DIR_HOST)/share/automake-*))