From: Neal Norwitz Date: Fri, 19 May 2006 07:05:01 +0000 (+0000) Subject: Oops, I forgot to include this file in the last commit (46046): X-Git-Tag: v2.5b1~612 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4eafe9ee4f37ad06f7688f23df07f9390f522fdc;p=python 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. --- diff --git a/Python/dynload_hpux.c b/Python/dynload_hpux.c index b4de08146c..fec0826ca6 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} };