[issue6308] termios fix for QNX breaks HP-UX

2012-11-18 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 9dd4638de73b by Stefan Krah in branch 'default':
Issue #6308: Try to fix the termios build failure on HP-UX.
http://hg.python.org/cpython/rev/9dd4638de73b

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6308
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6308] termios fix for QNX breaks HP-UX

2012-11-18 Thread Stefan Krah

Stefan Krah added the comment:

Fixed in 2.7, 3.3 and 3.4.

--
keywords: +buildbot
nosy: +skrah
resolution:  - fixed
stage:  - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6308
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com




[issue6308] termios fix for QNX breaks HP-UX

2012-08-01 Thread Dirkjan Ochtman

Dirkjan Ochtman added the comment:

Can we have someone take a look at this? It seems fairly innocuous.

--
nosy: +djc

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6308
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6308] termios fix for QNX breaks HP-UX

2009-06-18 Thread Michael Haubenwallner

New submission from Michael Haubenwallner michael.haubenwall...@salomon.at:

The patch for issue 175 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!

--
components: Build
messages: 89507
nosy: haubi
severity: normal
status: open
title: termios fix for QNX breaks HP-UX
type: compile error
versions: Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6308
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com