Browse Source

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>
Alexandru Ardelean 10 years ago
parent
commit
820278a0c8
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      lang/python/Makefile

+ 2
- 2
lang/python/Makefile View File

126
 define Package/python-readline
126
 define Package/python-readline
127
 $(call Package/python/Default)
127
 $(call Package/python/Default)
128
  TITLE:=Python support for readline
128
  TITLE:=Python support for readline
129
- DEPENDS:=@PACKAGE_python +PACKAGE_python:python +libreadline +libncurses @BROKEN
129
+ DEPENDS:=@PACKAGE_python +PACKAGE_python:python +libreadline +libncursesw @BROKEN
130
 endef
130
 endef
131
 
131
 
132
 define Package/python-ncurses
132
 define Package/python-ncurses
133
 $(call Package/python/Default)
133
 $(call Package/python/Default)
134
  TITLE:=Python support for readline
134
  TITLE:=Python support for readline
135
- DEPENDS:=@PACKAGE_python +PACKAGE_python:python +libncurses
135
+ DEPENDS:=@PACKAGE_python +PACKAGE_python:python +libncursesw
136
 endef
136
 endef
137
 
137
 
138
 MAKE_FLAGS:=\
138
 MAKE_FLAGS:=\