[issue4065] _multiprocessing doesn't build on macosx 10.3

2009-01-19 Thread Jesse Noller
Changes by Jesse Noller : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue4065] _multiprocessing doesn't build on macosx 10.3

2009-01-18 Thread Jesse Noller
Jesse Noller added the comment: This issues was fixed on 2008-11-04 by Martin Loewis in r67098 Index: multiprocessing.h === --- multiprocessing.h (revision 67097) +++ multiprocessing.h (revision 67098) @@ -20,7 +20,9 @@ # def

[issue4065] _multiprocessing doesn't build on macosx 10.3

2009-01-08 Thread Jesse Noller
Changes by Jesse Noller : -- assignee: -> jnoller nosy: +jnoller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4065] _multiprocessing doesn't build on macosx 10.3

2009-01-02 Thread Ronald Oussoren
Ronald Oussoren added the comment: The manpage for writev(2) mentions #include . Adding a #include for is the right fix after all... ___ Python tracker ___ _

[issue4065] _multiprocessing doesn't build on macosx 10.3

2008-10-07 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: What does sendmsg(2) say what to include? What about writev(2)? (the latter, on Linux, says that sys/uio.h is indeed the correct header) -- nosy: +loewis ___ Python tracker <[EMAIL PROTECTED]>

[issue4065] _multiprocessing doesn't build on macosx 10.3

2008-10-07 Thread Ronald Oussoren
New submission from Ronald Oussoren <[EMAIL PROTECTED]>: I'm trying to build python 2.6 on a Mac OS X 10.3 system. This fails to build the multiprocessing extension due to a missing definition of "struct iovec". It turns out that you have to include to get that definition on OSX 10.3. Addin