Skip to content

Commit

Permalink
add module name;
Browse files Browse the repository at this point in the history
  • Loading branch information
brussee committed Mar 27, 2016
1 parent 8399be8 commit c63398d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pythonforandroid/recipes/python2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,18 +107,20 @@ def do_python_build(self, arch):
file.writelines([
'SQLITE=' + Recipe.get_recipe('sqlite3', self.ctx).get_build_dir(arch.arch) + '\n',
'_sqlite3',
' _sqlite/cache.c',
' _sqlite/module.c',
' _sqlite/connection.c',
' _sqlite/cursor.c',
' _sqlite/cache.c',
' _sqlite/microprotocols.c',
' _sqlite/module.c',
' _sqlite/prepare_protocol.c',
' _sqlite/row.c',
' _sqlite/statement.c',
' _sqlite/util.c',
' _sqlite/row.c',
' -DSQLITE_ENABLE_FTS4',
#' -DMODULE_NAME _sqlite3',
' -I$(SQLITE)',
' -L$(SQLITE)/obj/local/' + arch.arch + ' -lsqlite3',
#' -o_sqlite/',
'\n'])
file.close()

Expand Down

0 comments on commit c63398d

Please sign in to comment.