From f093b2d5218f309bc0000153f30e0d70da508139 Mon Sep 17 00:00:00 2001 From: Akinwale Ariwodola Date: Sat, 21 Aug 2021 13:39:58 +0100 Subject: [PATCH] add missing C files to makefile --- recipes/python3crystax/android.mk.3.10 | 3 +++ recipes/python3crystax/config.c.3.10 | 2 ++ 2 files changed, 5 insertions(+) diff --git a/recipes/python3crystax/android.mk.3.10 b/recipes/python3crystax/android.mk.3.10 index e9101c4..43b6e97 100644 --- a/recipes/python3crystax/android.mk.3.10 +++ b/recipes/python3crystax/android.mk.3.10 @@ -158,6 +158,7 @@ LOCAL_SRC_FILES := config.c \ $(MY_PYTHON_SRC_ROOT)/Modules/socketmodule.c \ $(MY_PYTHON_SRC_ROOT)/Modules/_sre.c \ $(MY_PYTHON_SRC_ROOT)/Modules/_stat.c \ + $(MY_PYTHON_SRC_ROOT)/Modules/_statisticsmodule.c \ $(MY_PYTHON_SRC_ROOT)/Modules/_struct.c \ $(MY_PYTHON_SRC_ROOT)/Modules/symtablemodule.c \ $(MY_PYTHON_SRC_ROOT)/Modules/termios.c \ @@ -172,8 +173,10 @@ LOCAL_SRC_FILES := config.c \ $(MY_PYTHON_SRC_ROOT)/Modules/xxlimited.c \ $(MY_PYTHON_SRC_ROOT)/Modules/xxlimited_35.c \ $(MY_PYTHON_SRC_ROOT)/Modules/xxmodule.c \ + $(MY_PYTHON_SRC_ROOT)/Modules/_xxsubinterpretersmodule.c \ $(MY_PYTHON_SRC_ROOT)/Modules/xxsubtype.c \ $(MY_PYTHON_SRC_ROOT)/Modules/zlibmodule.c \ + $(MY_PYTHON_SRC_ROOT)/Modules/_zoneinfo.c \ $(MY_PYTHON_SRC_ROOT)/Modules/cjkcodecs/_codecs_cn.c \ $(MY_PYTHON_SRC_ROOT)/Modules/cjkcodecs/_codecs_hk.c \ $(MY_PYTHON_SRC_ROOT)/Modules/cjkcodecs/_codecs_iso2022.c \ diff --git a/recipes/python3crystax/config.c.3.10 b/recipes/python3crystax/config.c.3.10 index 3764f77..8e20f0b 100644 --- a/recipes/python3crystax/config.c.3.10 +++ b/recipes/python3crystax/config.c.3.10 @@ -26,6 +26,7 @@ extern PyObject* PyInit__thread(void); extern PyObject* PyInit__codecs(void); extern PyObject* PyInit__weakref(void); extern PyObject* PyInit_xxsubtype(void); +extern PyObject* PyInit__xxsubinterpreters(void); extern PyObject* PyInit__random(void); extern PyObject* PyInit_itertools(void); extern PyObject* PyInit__collections(void); @@ -100,6 +101,7 @@ struct _inittab _PyImport_Inittab[] = { {"_functools", PyInit__functools}, {"xxsubtype", PyInit_xxsubtype}, + {"_xxsubinterpreters", PyInit__xxsubinterpreters}, {"zlib", PyInit_zlib}, /* CJK codecs */