Oops, I forgot to include this file in the last commit (46046):

Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.

I suppose this could be backported if anyone cares.
This commit is contained in:
Neal Norwitz 2006-05-19 07:05:01 +00:00
parent 58e28887d5
commit 4eafe9ee4f
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@
#endif
const struct filedescr _PyImport_DynLoadFiletab[] = {
{".sl", "rb", C_EXTENSION},
{"module.sl", "rb", C_EXTENSION},
{SHLIB_EXT, "rb", C_EXTENSION},
{"module"SHLIB_EXT, "rb", C_EXTENSION},
{0, 0}
};