File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -97,16 +97,28 @@ def do_python_build(self, arch):
97
97
if 'openssl' in self .ctx .recipe_build_order :
98
98
file .writelines ([
99
99
'SSL=' + Recipe .get_recipe ('openssl' , self .ctx ).get_build_dir (arch .arch ) + '\n ' ,
100
- '_ssl _ssl.c -DUSE_SSL' ,
100
+ '_ssl' ,
101
+ ' _ssl.c' ,
102
+ ' -DUSE_SSL' ,
101
103
' -I$(SSL)/include -I$(SSL)/include/openssl' ,
102
104
' -L$(SSL) -lssl -lcrypto' ,
103
105
'\n ' ])
104
106
if 'sqlite3' in self .ctx .recipe_build_order :
105
107
file .writelines ([
106
108
'SQLITE=' + Recipe .get_recipe ('sqlite3' , self .ctx ).get_build_dir (arch .arch ) + '\n ' ,
107
- 'sqlite3 sqlite3.c -DSQLITE_ENABLE_FTS4' ,
109
+ '_sqlite3' ,
110
+ ' _sqlite/cache.c' ,
111
+ ' _sqlite/connection.c' ,
112
+ ' _sqlite/cursor.c' ,
113
+ ' _sqlite/microprotocols.c' ,
114
+ ' _sqlite/module.c' ,
115
+ ' _sqlite/prepare_protocol.c' ,
116
+ ' _sqlite/row.c' ,
117
+ ' _sqlite/statement.c' ,
118
+ ' _sqlite/util.c' ,
119
+ ' -DSQLITE_ENABLE_FTS4' ,
108
120
' -I$(SQLITE)' ,
109
- ' -L$(SQLITE)/obj/local/' + arch .arch + '/objs -lsqlite3' ,
121
+ ' -L$(SQLITE)/obj/local/' + arch .arch + ' -lsqlite3' ,
110
122
'\n ' ])
111
123
file .close ()
112
124
Original file line number Diff line number Diff line change 3
3
import sh
4
4
5
5
class Sqlite3Recipe (NDKRecipe ):
6
- version = '3.11.0 '
6
+ version = '3.11.1 '
7
7
# Don't forget to change the URL when changing the version
8
- url = 'http://www.sqlite.com/2016/sqlite-amalgamation-3110000 .zip'
8
+ url = 'http://www.sqlite.com/2016/sqlite-amalgamation-3110100 .zip'
9
9
generated_libraries = ['sqlite3' ]
10
10
11
11
def should_build (self , arch ):
You can’t perform that action at this time.
0 commit comments