[issue3920] OpenBSD 4.4 still doesn't support _XOPEN_SOURCE

2010-02-15 Thread Martin v . Löwis
Martin v. Löwis added the comment: I have now committed bsd3.diff as r78194, r78195, r78196, and r78197 -- resolution: -> accepted status: open -> closed versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 3.0 ___ Python tracker

[issue3920] OpenBSD 4.4 still doesn't support _XOPEN_SOURCE

2010-02-03 Thread Stefan Krah
Stefan Krah added the comment: I tested bsd3.diff on OpenBSD-4.4/py3k and it works fine. ncurses doesn't build and I get a libssl assertion failure in test_ftplib, but without the patch I can't build py3k at all. This is a significant improvement, so +1 for applying the patch. -- nosy

[issue3920] OpenBSD 4.4 still doesn't support _XOPEN_SOURCE

2008-09-21 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Hye-Shik, can you please review this patch? -- assignee: -> hyeshik.chang keywords: +needs review nosy: +hyeshik.chang ___ Python tracker <[EMAIL PROTECTED]> __

[issue3920] OpenBSD 4.4 still doesn't support _XOPEN_SOURCE

2008-09-21 Thread Henry Precheur
Changes by Henry Precheur <[EMAIL PROTECTED]>: -- versions: +Python 2.5 ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list

[issue3920] OpenBSD 4.4 still doesn't support _XOPEN_SOURCE

2008-09-21 Thread Henry Precheur
Henry Precheur <[EMAIL PROTECTED]> added the comment: The patch bsd2.diff seems to work. There was a little typo in it (a missing @). (correction attached) Added file: http://bugs.python.org/file11547/bsd3.diff ___ Python tracker <[EMAIL PROTECTED]>

[issue3920] OpenBSD 4.4 still doesn't support _XOPEN_SOURCE

2008-09-21 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Looking at the code again, it might be that definition of _POSIX_SOURCE is not harmful per se anymore, as long as _BSD_SOURCE is also defined. Can you please also try the alternative bsd2.diff? Added file: http://bugs.python.org/file11539/b

[issue3920] OpenBSD 4.4 still doesn't support _XOPEN_SOURCE

2008-09-21 Thread Martin v. Löwis
New submission from Martin v. Löwis <[EMAIL PROTECTED]>: msg71969 suggests that OpenBSD 4.4 still fails to build Python if _XOPEN_SOURCE is defined. Henry, can you please confirm that a) the problem still is that select is unavailable if _POSIX_SOURCE is defined, and b) the attached patch fixes