Sébastien Sablé <sa...@users.sourceforge.net> added the comment:

Great! Thanks Antoine.

I checked quickly and there is a small correction to do on the 2.7 branch: this 
branch is different because there has been a change between python 2.x and 3.x 
in pep-3121 concerning the name of the entry function in a module 
(init<modulname> to PyInit_<modulename>)

So you need to change this line in Modules/ld_so_aix.in from:
  entry=PyInit_`echo $filename | sed "s/module.*//"`
to
  entry=init`echo $filename | sed "s/module.*//"`

Except for that it looks fine.

I will continue to try to make all unitary tests pass on AIX. And I would like 
to setup a buildbot that will compile and test the trunk every day and post the 
log on a public web site, in order to help keep this platform well supported.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue941346>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to