Skip to content

Commit 07cc5b7

Browse files
committed
add module name;
1 parent 20a34e2 commit 07cc5b7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pythonforandroid/recipes/python2/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,18 +107,20 @@ def do_python_build(self, arch):
107107
file.writelines([
108108
'SQLITE=' + Recipe.get_recipe('sqlite3', self.ctx).get_build_dir(arch.arch) + '\n',
109109
'_sqlite3',
110-
' _sqlite/cache.c',
110+
' _sqlite/module.c',
111111
' _sqlite/connection.c',
112112
' _sqlite/cursor.c',
113+
' _sqlite/cache.c',
113114
' _sqlite/microprotocols.c',
114-
' _sqlite/module.c',
115115
' _sqlite/prepare_protocol.c',
116-
' _sqlite/row.c',
117116
' _sqlite/statement.c',
118117
' _sqlite/util.c',
118+
' _sqlite/row.c',
119119
' -DSQLITE_ENABLE_FTS4',
120+
#' -DMODULE_NAME _sqlite3',
120121
' -I$(SQLITE)',
121122
' -L$(SQLITE)/obj/local/' + arch.arch + ' -lsqlite3',
123+
#' -o_sqlite/',
122124
'\n'])
123125
file.close()
124126

0 commit comments

Comments
 (0)