Skip to content

Commit 358aecf

Browse files
committed
added SQLITE_DQS=0 and SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time options
1 parent 27982c2 commit 358aecf

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

deps/defines.gypi

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
{
44
'defines': [
5+
'SQLITE_DQS=0',
6+
'SQLITE_LIKE_DOESNT_MATCH_BLOBS',
57
'SQLITE_THREADSAFE=0',
68
'SQLITE_DEFAULT_MEMSTATUS=0',
79
'SQLITE_OMIT_DEPRECATED',

deps/download.sh

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ YEAR="2020"
2424
# TODO: SQLITE_ENABLE_GEOPOLY (determine if the emitted warnings are safe or not)
2525

2626
DEFINES="
27+
SQLITE_DQS=0
28+
SQLITE_LIKE_DOESNT_MATCH_BLOBS
2729
SQLITE_THREADSAFE=0
2830
SQLITE_DEFAULT_MEMSTATUS=0
2931
SQLITE_OMIT_DEPRECATED

deps/sqlite3.tar.gz

0 Bytes
Binary file not shown.

docs/compilation.md

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Your amalgamation directory should contain `sqlite3.c` and `sqlite3.h`. Any desi
1313
By default, this distribution currently uses SQLite3 **version 3.31.1** with the following [compilation options](https://www.sqlite.org/compile.html):
1414

1515
```
16+
SQLITE_DQS=0
17+
SQLITE_LIKE_DOESNT_MATCH_BLOBS
1618
SQLITE_THREADSAFE=0
1719
SQLITE_DEFAULT_MEMSTATUS=0
1820
SQLITE_OMIT_DEPRECATED

0 commit comments

Comments
 (0)