From 4eafe9ee4f37ad06f7688f23df07f9390f522fdc Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 19 May 2006 07:05:01 +0000 Subject: 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. --- Python/dynload_hpux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/dynload_hpux.c b/Python/dynload_hpux.c index b4de0814..fec0826 100644 --- a/Python/dynload_hpux.c +++ b/Python/dynload_hpux.c @@ -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} }; -- cgit v0.12