From: Alexander Kanavin Date: Fri, 18 Jan 2019 11:24:10 +0000 (+0100) Subject: python3: use ncursesw, not ncurses X-Git-Tag: uninative-2.4~572 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=042187a65d0622fbd721346b4e55146616c87fd8;p=openembedded-core.git python3: use ncursesw, not ncurses So that wide-char functions are accssible. [YOCTO #13142] Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/python/python3/130-readline-setup.patch b/meta/recipes-devtools/python/python3/130-readline-setup.patch index c805652d69..cfa712678b 100644 --- a/meta/recipes-devtools/python/python3/130-readline-setup.patch +++ b/meta/recipes-devtools/python/python3/130-readline-setup.patch @@ -49,7 +49,7 @@ Upstream-Status: Inappropriate [Embedded Specific] - curses_library = 'ncurses' - elif self.compiler.find_library_file(lib_dirs, 'curses'): - curses_library = 'curses' -+ curses_library = "ncurses" ++ curses_library = "ncursesw" if host_platform == 'darwin': os_release = int(os.uname()[2].split('.')[0])