python: use libncursesw instead of libncurses

Python's build scripts prefer ncursesw, and if it is detected
it will be used.
The problem will occur when linking, since ncursesw libs may not be
installed if not added as deps, but the sources will be compiled
against ncursesw.

Reference from Python's HISTORY file:
  Patch #1428494: Prefer linking against ncursesw over ncurses library.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
Alexandru Ardelean 2014-10-19 22:38:03 +03:00
parent 0141057a59
commit 820278a0c8

View file

@ -126,13 +126,13 @@ endef
define Package/python-readline define Package/python-readline
$(call Package/python/Default) $(call Package/python/Default)
TITLE:=Python support for readline TITLE:=Python support for readline
DEPENDS:=@PACKAGE_python +PACKAGE_python:python +libreadline +libncurses @BROKEN DEPENDS:=@PACKAGE_python +PACKAGE_python:python +libreadline +libncursesw @BROKEN
endef endef
define Package/python-ncurses define Package/python-ncurses
$(call Package/python/Default) $(call Package/python/Default)
TITLE:=Python support for readline TITLE:=Python support for readline
DEPENDS:=@PACKAGE_python +PACKAGE_python:python +libncurses DEPENDS:=@PACKAGE_python +PACKAGE_python:python +libncursesw
endef endef
MAKE_FLAGS:=\ MAKE_FLAGS:=\