comparison files/patch-lib__pypy___curses__build.py @ 69:f7806d358539

MERGE: the "origin" branch with the existing ports files
author Franz Glasner <fzglas.hg@dom66.de>
date Thu, 29 Sep 2022 09:19:28 +0200
parents b8cea9d588b1
children dd6054092884 913b7ccce398
comparison
equal deleted inserted replaced
67:9a0f32f1678b 69:f7806d358539
1 --- lib_pypy/_curses_build.py.orig 2020-03-25 12:13:59 UTC
2 +++ lib_pypy/_curses_build.py
3 @@ -31,6 +31,8 @@ def find_curses_dir_and_name():
4 return base, 'ncursesw'
5 if os.path.exists(os.path.join(base, 'include', 'ncurses')):
6 return base, 'ncurses'
7 + if os.path.exists(os.path.join(base, 'lib', 'libncursesw.so')):
8 + return base, 'ncursesw'
9 return '', None
10
11 base, name = find_curses_dir_and_name()