mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-27857) (GH-29152)
(cherry picked from commit 2396fa6537
)
Co-authored-by: Florin Spătar <florin.spatar@gmail.com>
This commit is contained in:
parent
0df5d31ac7
commit
6d66de97f8
2 changed files with 2 additions and 1 deletions
|
@ -0,0 +1 @@
|
||||||
|
Added fallback to extension modules with '.sl' suffix on HP-UX
|
|
@ -13,7 +13,7 @@
|
||||||
#define FUNCNAME_PATTERN "%.20s_%.200s"
|
#define FUNCNAME_PATTERN "%.20s_%.200s"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const char *_PyImport_DynLoadFiletab[] = {SHLIB_EXT, NULL};
|
const char *_PyImport_DynLoadFiletab[] = {SHLIB_EXT, ".sl", NULL};
|
||||||
|
|
||||||
dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix,
|
dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix,
|
||||||
const char *shortname,
|
const char *shortname,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue