Added a separate extension (.carbon.slb) for Carbon dynamic modules.
This commit is contained in:
parent
fd97a919ff
commit
8eb4b56828
|
@ -19,8 +19,12 @@ const struct filedescr _PyImport_DynLoadFiletab[] = {
|
|||
{".slb", "rb", C_EXTENSION},
|
||||
#ifdef __CFM68K__
|
||||
{".CFM68K.slb", "rb", C_EXTENSION},
|
||||
#else
|
||||
#ifdef TARGET_API_MAC_CARBON
|
||||
{".carbon.slb", "rb", C_EXTENSION},
|
||||
#else
|
||||
{".ppc.slb", "rb", C_EXTENSION},
|
||||
#endif
|
||||
#endif
|
||||
{0, 0}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue