[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-04-01 Thread Jesse Noller
Jesse Noller added the comment: Closing as fixed until the buildbots prove otherwise -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-04-01 Thread Jesse Noller
Jesse Noller added the comment: This is committed as of CL 71007 on trunk. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-03-29 Thread Roumen Petrov
Roumen Petrov added the comment: Cchristian it is not about random idea. It is how to write simple readable and correct autoconf script. Compare my check for functions (see attached bootstrap.sh) with you. Also some of macros in you patch are marked as obsolete. $ CC=g++ ./bootstrap.sh ... #de

[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-03-26 Thread Christian Heimes
Christian Heimes added the comment: Jesse, have fun with svn+ssh://python...@svn.python.org/python/branches/multiprocessing-autoconf during the sprint. -- stage: needs patch -> patch review ___ Python tracker _

[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-03-26 Thread Christian Heimes
Christian Heimes added the comment: Dear Roumen, please do my a favor and stop throwing in random ideas and accusations. I appreciate any help but your replies don't help at all. They are just causing frustration on either side. I know about AC_CHECK_DECL and AC_CHECK_FUNC. As I already said I

[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-03-26 Thread Roumen Petrov
Roumen Petrov added the comment: AC_CHECK_FUNC* check for function . AC_CHECK_DECL check for declaration . The check for functions sem_xxx() is incorrect in proposed patch. It has to check for function. I didn't review next part of the patch. -- __

[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-03-24 Thread Christian Heimes
Christian Heimes added the comment: AC_CHECK_FUNC works only for trivial checks that do not require additional headers. -- ___ Python tracker ___

[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-03-23 Thread Roumen Petrov
Roumen Petrov added the comment: What about AC_CHECK_FUNC* macros ? -- nosy: +rpetrov ___ Python tracker ___ ___ Python-bugs-list mail

[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-03-23 Thread Christian Heimes
Christian Heimes added the comment: I've correct some smaller issues and integrated the autoconf code into multiprocessing and setup.py A working patch is appended. -- keywords: +patch Added file: http://bugs.python.org/file13402/mp_autoconf.patch __

[issue5545] multiprocessing: switch to autoconf detection of platform values

2009-03-23 Thread Jesse Noller
New submission from Jesse Noller : See mail thread: http://mail.python.org/pipermail/python-dev/2009-March/087418.html And Christian's checkin to the back port: http://code.google.com/p/python-multiprocessing/source/detail?r=64# Need to take into the account information here (for my own notes):