Sébastien Sablé <[email protected]> added the comment: OK, Python with shared libraries is broken in trunk since the library was renamed to libpython3.2m. Here is a patch to correct that:
Index: Modules/ld_so_aix.in =================================================================== --- Modules/ld_so_aix.in (revision 88422) +++ Modules/ld_so_aix.in (working copy) @@ -131,7 +131,7 @@ shift done -if test "$objfile" = "libpython@[email protected]"; then +if test "$objfile" = "libpython@VERSION@@[email protected]"; then ldsocoremode="true" fi ---------- _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue941346> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
