comparison lang/pypy311/files/patch-lib__pypy___curses__build.py @ 201:aa93453cd531

Build PyPy3 for Python implementation 3.11. BUGS: - pypy39 not yet deleted. - Tests are not working yet.
author Franz Glasner <fzglas.hg@dom66.de>
date Wed, 12 Mar 2025 17:01:42 +0100
parents lang/pypy310/files/patch-lib__pypy___curses__build.py@9cc467368751
children
comparison
equal deleted inserted replaced
200:792fb463576a 201:aa93453cd531
1 --- lib_pypy/_curses_build.py.orig 2022-03-28 09:53:47 UTC
2 +++ lib_pypy/_curses_build.py
3 @@ -37,6 +37,8 @@ def find_curses_dir_and_name():
4 return base, 'ncursesw'
5 if os.path.exists(os.path.join(base, 'lib', 'libncurses.so')):
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()