Skip to content

Commit

Permalink
Link fileio against sqlite3.c
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayP13 committed Nov 16, 2018
1 parent bbd5482 commit 40957f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,13 +480,7 @@ def sqlite_misc_extensions(skip=[], zlib=[], windirent=[]):
pyinit_source = source_for_module_with_pyinit(module)
z_sources = zlib_sources if os.path.basename(source) in zlib else []
SQLITE3_REL = os.path.relpath(SQLITE3, PROJ_PATH)
windirent_sources = [
os.path.join(SQLITE3_REL, "test_windirent.c"),
os.path.join(SQLITE3_REL, "malloc.c"),
os.path.join(SQLITE3_REL, "os.c"),
os.path.join(SQLITE3_REL, "mutex_w32.c"),
os.path.join(SQLITE3_REL, "opcodes.c"),
]
windirent_sources = [SQLITE_POST] + icu_source
windirent_sources = (
windirent_sources if os.path.basename(source) in windirent else [])
miscs.append(
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ('0', '0', '64')
__version_info__ = ('0', '0', '65')
__version__ = '.'.join(__version_info__)

0 comments on commit 40957f9

Please sign in to comment.