summaryrefslogtreecommitdiff
path: root/profiles/linkage/pycompile.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-23 17:26:56 -0500
committermidipix <writeonce@midipix.org>2018-12-23 20:31:21 -0500
commitfeb6bdda2186ec0b0d1134b2da13732f35705557 (patch)
treefb45b57c6414308c132663cadeab3afa3f452a79 /profiles/linkage/pycompile.h
parent23670adefe79a809600afe9d6ba4e1266df59181 (diff)
downloadsbpython3-feb6bdda2186ec0b0d1134b2da13732f35705557.tar.bz2
sbpython3-feb6bdda2186ec0b0d1134b2da13732f35705557.tar.xz
project: support variant-specific header-, source-, and extension lists.
Diffstat (limited to 'profiles/linkage/pycompile.h')
-rw-r--r--profiles/linkage/pycompile.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/profiles/linkage/pycompile.h b/profiles/linkage/pycompile.h
deleted file mode 100644
index ad74185..0000000
--- a/profiles/linkage/pycompile.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef PY_LINKAGE_PYCOMPILE_H
-#define PY_LINKAGE_PYCOMPILE_H
-
-PY_INIT_FUNC(_decimal);
-PY_INIT_FUNC(_elementtree);
-PY_INIT_FUNC(_heapq);
-PY_INIT_FUNC(_posixsubprocess);
-
-PY_INIT_FUNC(math);
-PY_INIT_FUNC(readline);
-PY_INIT_FUNC(select);
-PY_INIT_FUNC(termios);
-
-#define PY_IMPORT_INITTAB_PYCOMPILE_CORE \
- {"_decimal", PyInit__decimal}, \
- {"_elementtree", PyInit__elementtree}, \
- {"_heapq", PyInit__heapq}, \
- {"_posixsubprocess", PyInit__posixsubprocess}, \
- {"math", PyInit_math}, \
- {"readline", PyInit_readline}, \
- {"select", PyInit_select}, \
- {"termios", PyInit_termios}
-
-#endif