[issue7209] Prevents uint_t from being used on QNX

2013-03-28 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue7209] Prevents uint_t from being used on QNX

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.3, Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue7209] Prevents uint_t from being used on QNX

2009-10-26 Thread Matt Kraai
Matt Kraai added the comment: Here's an updated patch. The first time I forgot to regenerate pyconfig.h.in. -- Added file: http://bugs.python.org/file15203/define-_QNX_SOURCE.patch ___ Python tracker _

[issue7209] Prevents uint_t from being used on QNX

2009-10-26 Thread Matt Kraai
New submission from Matt Kraai : pyconfig.h defines _POSIX_C_SOURCE to 200112L, which prevents QNX's sys/types.h from defining uint_t. Samba 4 uses this type, so it fails to compile if Python.h is included first (cf. https://bugzilla.samba.org/show_bug.cgi?id=6842). The attached patch fixes thi