summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-01-15 16:00:40 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-01-15 16:00:40 (GMT)
commit8eb4b56828c9083ab91a8cfa0ac15fe9cb30f3cf (patch)
treee63039c4a1d67e6ecd5cf0c5e832a3200b0f7222 /Python
parentfd97a919ffc075e5704cfd834986bada0f243165 (diff)
downloadcpython-8eb4b56828c9083ab91a8cfa0ac15fe9cb30f3cf.zip
cpython-8eb4b56828c9083ab91a8cfa0ac15fe9cb30f3cf.tar.gz
cpython-8eb4b56828c9083ab91a8cfa0ac15fe9cb30f3cf.tar.bz2
Added a separate extension (.carbon.slb) for Carbon dynamic modules.
Diffstat (limited to 'Python')
-rw-r--r--Python/dynload_mac.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/dynload_mac.c b/Python/dynload_mac.c
index 645df90..e5e08e3 100644
--- a/Python/dynload_mac.c
+++ b/Python/dynload_mac.c
@@ -20,8 +20,12 @@ const struct filedescr _PyImport_DynLoadFiletab[] = {
#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}
};