File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
pythonforandroid/recipes/python2 Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -107,18 +107,20 @@ def do_python_build(self, arch):
107
107
file .writelines ([
108
108
'SQLITE=' + Recipe .get_recipe ('sqlite3' , self .ctx ).get_build_dir (arch .arch ) + '\n ' ,
109
109
'_sqlite3' ,
110
- ' _sqlite/cache .c' ,
110
+ ' _sqlite/module .c' ,
111
111
' _sqlite/connection.c' ,
112
112
' _sqlite/cursor.c' ,
113
+ ' _sqlite/cache.c' ,
113
114
' _sqlite/microprotocols.c' ,
114
- ' _sqlite/module.c' ,
115
115
' _sqlite/prepare_protocol.c' ,
116
- ' _sqlite/row.c' ,
117
116
' _sqlite/statement.c' ,
118
117
' _sqlite/util.c' ,
118
+ ' _sqlite/row.c' ,
119
119
' -DSQLITE_ENABLE_FTS4' ,
120
+ #' -DMODULE_NAME _sqlite3',
120
121
' -I$(SQLITE)' ,
121
122
' -L$(SQLITE)/obj/local/' + arch .arch + ' -lsqlite3' ,
123
+ #' -o_sqlite/',
122
124
'\n ' ])
123
125
file .close ()
124
126
You can’t perform that action at this time.
0 commit comments