aboutsummaryrefslogtreecommitdiff
path: root/tool/build-shell.sh
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2012-04-11 11:38:53 +0000
committerdrh <drh@noemail.net>2012-04-11 11:38:53 +0000
commit85e7243acfb3cc4edb16f8276e374cd730b5a0a7 (patch)
treee0d6a8e9551db91c6d5d216bfb8e451e5d21fb6e /tool/build-shell.sh
parentc00ce490c59a3466063d70ea800e01aba6994cee (diff)
downloadsqlite-85e7243acfb3cc4edb16f8276e374cd730b5a0a7.tar.gz
sqlite-85e7243acfb3cc4edb16f8276e374cd730b5a0a7.zip
Fix harmless static-analysis warnings, mosting having to do with memory
leaks in the command-line shell. Add a clang analysis of the command-line shell to the "warnings-clang.sh" script. Other minor cleanups to the command-line shell code. FossilOrigin-Name: 93a0f452a7023898ad3d62ee81b39a80477c332f
Diffstat (limited to 'tool/build-shell.sh')
-rw-r--r--tool/build-shell.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/build-shell.sh b/tool/build-shell.sh
index 54e830809..8e62a7174 100644
--- a/tool/build-shell.sh
+++ b/tool/build-shell.sh
@@ -12,8 +12,8 @@ make sqlite3.c
gcc -o sqlite3 -g -Os -I. \
-DSQLITE_THREADSAFE=0 \
-DSQLITE_ENABLE_VFSTRACE \
- -DSQLITE_ENABLE_STAT2 \
- -DSQLITE_ENABLE_FTS3 \
+ -DSQLITE_ENABLE_STAT3 \
+ -DSQLITE_ENABLE_FTS4 \
-DSQLITE_ENABLE_RTREE \
-DHAVE_READLINE \
-DHAVE_USLEEP=1 \