Commit 119498ad authored by Jack Jansen's avatar Jack Jansen

Added a separate extension (.carbon.slb) for Carbon dynamic modules.

parent 3423ea06
...@@ -19,8 +19,12 @@ const struct filedescr _PyImport_DynLoadFiletab[] = { ...@@ -19,8 +19,12 @@ const struct filedescr _PyImport_DynLoadFiletab[] = {
{".slb", "rb", C_EXTENSION}, {".slb", "rb", C_EXTENSION},
#ifdef __CFM68K__ #ifdef __CFM68K__
{".CFM68K.slb", "rb", C_EXTENSION}, {".CFM68K.slb", "rb", C_EXTENSION},
#else
#ifdef TARGET_API_MAC_CARBON
{".carbon.slb", "rb", C_EXTENSION},
#else #else
{".ppc.slb", "rb", C_EXTENSION}, {".ppc.slb", "rb", C_EXTENSION},
#endif
#endif #endif
{0, 0} {0, 0}
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment