[issue13552] Compilation issues of the curses module on OpenIndiana

2013-01-02 Thread STINNER Victor
STINNER Victor added the comment: What is the status of this issue? Is curses still broken on Python 3.4? -- nosy: +trent ___ Python tracker ___ _

[issue13552] Compilation issues of the curses module on OpenIndiana

2012-07-06 Thread Justin Venus
Justin Venus added the comment: Does OpenIndiana ship with the gnu version of ncurses like Solaris 11? Headers: /usr/include/ncurses Libraries: /usr/gnu/lib If it matches Solaris, then you can use my patch[1] in issue 3786 to see if that works around the issue, like it does for Solaris. 1)

[issue13552] Compilation issues of the curses module on OpenIndiana

2012-03-07 Thread STINNER Victor
STINNER Victor added the comment: Jesús Cea Avión also noticed in msg143798 from the issue #6755: I have compiled ncurses myself, supporting wide characters. I get this warnings in the buildbots: """ /export/home/buildbot/32bits/3.x.cea-indiana-x86/build/Modules/_cursesmodule.c:920: warning:

[issue13552] Compilation issues of the curses module on OpenIndiana

2011-12-07 Thread STINNER Victor
STINNER Victor added the comment: curses_hacks.patch: various hacks to use the XPG4 curses on OpenIndiana. -- keywords: +patch nosy: +enchanter Added file: http://bugs.python.org/file23873/curses_hacks.patch ___ Python tracker

[issue13552] Compilation issues of the curses module on OpenIndiana

2011-12-07 Thread STINNER Victor
New submission from STINNER Victor : The _curses module has two issues on OpenSolaris: - using the default curses library, mvwchgat() cannot be found and _curses module compilation fails - there is a "XPG4 curses" library. I tried to use it using various hacks in _cursesmodule.c and setup.py