[Python-checkins] r46047 - python/trunk/Python/dynload_hpux.c

neal.norwitz python-checkins at python.org
Fri May 19 09:05:01 CEST 2006


Author: neal.norwitz
Date: Fri May 19 09:05:01 2006
New Revision: 46047

Modified:
   python/trunk/Python/dynload_hpux.c
Log:
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.



Modified: python/trunk/Python/dynload_hpux.c
==============================================================================
--- python/trunk/Python/dynload_hpux.c	(original)
+++ python/trunk/Python/dynload_hpux.c	Fri May 19 09:05:01 2006
@@ -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}
 };
 


More information about the Python-checkins mailing list