This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sable
Recipients dickdunbar, haubi, loris, nnorwitz, pitrou, sable
Date 2011-02-15.13:00:20
SpamBayes Score 7.826636e-07
Marked as misclassified No
Message-id <1297774823.06.0.111228775269.issue941346@psf.upfronthosting.co.za>
In-reply-to
Content
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@VERSION@.so"; then
+if test "$objfile" = "libpython@VERSION@@ABIFLAGS@.so"; then
   ldsocoremode="true" 
 fi
History
Date User Action Args
2011-02-15 13:00:23sablesetrecipients: + sable, nnorwitz, pitrou, dickdunbar, loris, haubi
2011-02-15 13:00:23sablesetmessageid: <1297774823.06.0.111228775269.issue941346@psf.upfronthosting.co.za>
2011-02-15 13:00:20sablelinkissue941346 messages
2011-02-15 13:00:20sablecreate