This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author haubi
Recipients haubi
Date 2009-06-18.16:22:20
SpamBayes Score 2.2319437e-09
Marked as misclassified No
Message-id <1245342143.83.0.0806702305005.issue6308@psf.upfronthosting.co.za>
In-reply-to
Content
The patch for issue 1722225 in Include/pyport.h to include
<sys/termio.h> before <termios.h> for QNX does break for HP-UX:
On HP-UX, 'struct termios' gets declared within <sys/termio.h>, but when
included via <termios.h> _only_. Due to the include guard, it does not
declare 'struct termios' when included via <termios.h> the second time.

This is Python-2.6.2, but the code looks unchanged in trunk. As I'm not
sure how best to fix this, for 2.6.2 here I go with:
-#ifdef HAVE_SYS_TERMIO_H
+#if defined(HAVE_SYS_TERMIO_H) && defined(__QNX__)

Thanks!
History
Date User Action Args
2009-06-18 16:22:23haubisetrecipients: + haubi
2009-06-18 16:22:23haubisetmessageid: <1245342143.83.0.0806702305005.issue6308@psf.upfronthosting.co.za>
2009-06-18 16:22:22haubilinkissue6308 messages
2009-06-18 16:22:21haubicreate