]> granicus.if.org Git - python/commitdiff
Oops, I forgot to include this file in the last commit (46046):
authorNeal Norwitz <nnorwitz@gmail.com>
Fri, 19 May 2006 07:05:01 +0000 (07:05 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Fri, 19 May 2006 07:05:01 +0000 (07:05 +0000)
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

index b4de08146cf3617c32dee17295f02a47f67767ef..fec0826ca6743cc8b18746f9d20ebce0a1c3fd0b 100644 (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}
 };