aboutsummaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2022-10-21 16:34:10 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-10-21 16:34:10 +0000
commit2b3a7fef33e4c813c86aa97c5c8bcf9d52acf0d9 (patch)
tree98fd7584c4143ae4a5e61495368bb425a019bc41 /android
parentf6d1050e60e8138bd34b5820c544f77fec464a6a (diff)
parentd2d6e12ba60a206ab8c1894a285dd0ea7feab60e (diff)
downloadcpython3-2b3a7fef33e4c813c86aa97c5c8bcf9d52acf0d9.tar.gz
Add missing sqlite module into our python3 build am: 58c6475558 am: d2d6e12ba6
Original change: https://android-review.googlesource.com/c/platform/external/python/cpython3/+/2264176 Change-Id: Ia4d43bda7749505a4272b9f1a82a5dfad7490e1d Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'android')
-rw-r--r--android/Setup.local2
-rw-r--r--android/bionic/config.c2
-rw-r--r--android/darwin/config.c2
-rw-r--r--android/linux_arm64/config.c2
-rw-r--r--android/linux_x86_64/config.c2
5 files changed, 10 insertions, 0 deletions
diff --git a/android/Setup.local b/android/Setup.local
index 0113ebb225..307db349a1 100644
--- a/android/Setup.local
+++ b/android/Setup.local
@@ -58,3 +58,5 @@ _sha512 sha512module.c
_sha3 _sha3/sha3module.c
_struct _struct.c
+
+_sqlite3 _sqlite/cache.c _sqlite/connection.c _sqlite/cursor.c _sqlite/microprotocols.c _sqlite/module.c _sqlite/prepare_protocol.c _sqlite/row.c _sqlite/statement.c _sqlite/util.c
diff --git a/android/bionic/config.c b/android/bionic/config.c
index 8cdc7685f9..cf249dc7a0 100644
--- a/android/bionic/config.c
+++ b/android/bionic/config.c
@@ -73,6 +73,7 @@ extern PyObject* PyInit__sha256(void);
extern PyObject* PyInit__sha512(void);
extern PyObject* PyInit__sha3(void);
extern PyObject* PyInit__struct(void);
+extern PyObject* PyInit__sqlite3(void);
extern PyObject* PyInit_posix(void);
extern PyObject* PyInit_errno(void);
extern PyObject* PyInit_pwd(void);
@@ -157,6 +158,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_sha512", PyInit__sha512},
{"_sha3", PyInit__sha3},
{"_struct", PyInit__struct},
+ {"_sqlite3", PyInit__sqlite3},
{"posix", PyInit_posix},
{"errno", PyInit_errno},
{"pwd", PyInit_pwd},
diff --git a/android/darwin/config.c b/android/darwin/config.c
index 8cdc7685f9..cf249dc7a0 100644
--- a/android/darwin/config.c
+++ b/android/darwin/config.c
@@ -73,6 +73,7 @@ extern PyObject* PyInit__sha256(void);
extern PyObject* PyInit__sha512(void);
extern PyObject* PyInit__sha3(void);
extern PyObject* PyInit__struct(void);
+extern PyObject* PyInit__sqlite3(void);
extern PyObject* PyInit_posix(void);
extern PyObject* PyInit_errno(void);
extern PyObject* PyInit_pwd(void);
@@ -157,6 +158,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_sha512", PyInit__sha512},
{"_sha3", PyInit__sha3},
{"_struct", PyInit__struct},
+ {"_sqlite3", PyInit__sqlite3},
{"posix", PyInit_posix},
{"errno", PyInit_errno},
{"pwd", PyInit_pwd},
diff --git a/android/linux_arm64/config.c b/android/linux_arm64/config.c
index 8cdc7685f9..cf249dc7a0 100644
--- a/android/linux_arm64/config.c
+++ b/android/linux_arm64/config.c
@@ -73,6 +73,7 @@ extern PyObject* PyInit__sha256(void);
extern PyObject* PyInit__sha512(void);
extern PyObject* PyInit__sha3(void);
extern PyObject* PyInit__struct(void);
+extern PyObject* PyInit__sqlite3(void);
extern PyObject* PyInit_posix(void);
extern PyObject* PyInit_errno(void);
extern PyObject* PyInit_pwd(void);
@@ -157,6 +158,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_sha512", PyInit__sha512},
{"_sha3", PyInit__sha3},
{"_struct", PyInit__struct},
+ {"_sqlite3", PyInit__sqlite3},
{"posix", PyInit_posix},
{"errno", PyInit_errno},
{"pwd", PyInit_pwd},
diff --git a/android/linux_x86_64/config.c b/android/linux_x86_64/config.c
index 7889efefb3..c97555f17e 100644
--- a/android/linux_x86_64/config.c
+++ b/android/linux_x86_64/config.c
@@ -76,6 +76,7 @@ extern PyObject* PyInit__sha256(void);
extern PyObject* PyInit__sha512(void);
extern PyObject* PyInit__sha3(void);
extern PyObject* PyInit__struct(void);
+extern PyObject* PyInit__sqlite3(void);
extern PyObject* PyInit_posix(void);
extern PyObject* PyInit_errno(void);
extern PyObject* PyInit_pwd(void);
@@ -163,6 +164,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_sha512", PyInit__sha512},
{"_sha3", PyInit__sha3},
{"_struct", PyInit__struct},
+ {"_sqlite3", PyInit__sqlite3},
{"posix", PyInit_posix},
{"errno", PyInit_errno},
{"pwd", PyInit_pwd},