Skip to content

Commit

Permalink
Add SQLITE_ENABLE_DBSTAT_VTAB to windows makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles committed Sep 19, 2024
1 parent 3b8c790 commit adad375
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

- fixed: Add `SQLITE_ENABLE_DBSTAT_VTAB` to windows build.

## v0.24.1

- fixed: Pre-compile images for Apple and Windows
Expand Down
1 change: 1 addition & 0 deletions Makefile.win
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ CFLAGS = -DSQLITE_ENABLE_MATH_FUNCTIONS=1 $(CFLAGS)
CFLAGS = -DSQLITE_ENABLE_RBU=1 $(CFLAGS)
CFLAGS = -DSQLITE_ENABLE_RTREE=1 $(CFLAGS)
CFLAGS = -DSQLITE_OMIT_DEPRECATED=1 $(CFLAGS)
CFLAGS = -DSQLITE_ENABLE_DBSTAT_VTAB=1 $(CFLAGS)

# TODO: We should allow the person building to be able to specify this
CFLAGS = -DNDEBUG=1 $(CFLAGS)
Expand Down

0 comments on commit adad375

Please sign in to comment.