Python 2.1b1 setup.py bug for HPUX11

Norman Shelley Norman_Shelley-RRDN60 at email.sps.mot.com
Mon Mar 5 17:42:33 EST 2001


In order to build python 2.1b1 for
% uname -a
HP-UX wshelley B.11.00 A 9000/785 2014123772 two-user license

I had to modify the setup.py script as follows. BTW, I did not request
curses or termios in Modules/Setup either.


% diff setup.py setup.py.orig
385c385
<             ###exts.append( Extension('termios', ['termios.c']) )
---
>             exts.append( Extension('termios', ['termios.c']) )
418,419c418,419
<             ###exts.append( Extension('_curses', ['_cursesmodule.c'],
<             ###                       libraries = curses_libs) )
---
>             exts.append( Extension('_curses', ['_cursesmodule.c'],
>                                    libraries = curses_libs) )





More information about the Python-list mailing list