diff options
author | Evan Jones <evan.jones@datadoghq.com> | 2020-11-16 12:00:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 02:00:32 +0900 |
commit | 943e8f860d9ddef2f3abed3b34102d775e181561 (patch) | |
tree | 9920bf8ba0061d73c41efac48b801eb43c5b8c95 | |
parent | sqlite3.go: remove -DSQLITE_DISABLE_INTRINSIC: better builds (#878) (diff) | |
download | golite-943e8f860d9ddef2f3abed3b34102d775e181561.tar.gz golite-943e8f860d9ddef2f3abed3b34102d775e181561.tar.xz |
sqlite3.go: Remove -DSQLITE_ENABLE_FTS4_UNICODE61: not supported (#872)
This option was enabled by default in sqlite3 on 2014-07-03.
This setting does nothing. It can now be disabled with
SQLITE_DISABLE_FTS3_UNICODE. See the upstream commit:
https://sqlite.org/src/info/0cc0230ae9cfc976
I think this change was imported into this project with commit
ee9da4840dd680d1fe2927692ea4ab5f8cd7c91c on 2015-06-12.
-rw-r--r-- | sqlite3.go | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -15,7 +15,6 @@ package sqlite3 #cgo CFLAGS: -DHAVE_USLEEP=1 #cgo CFLAGS: -DSQLITE_ENABLE_FTS3 #cgo CFLAGS: -DSQLITE_ENABLE_FTS3_PARENTHESIS -#cgo CFLAGS: -DSQLITE_ENABLE_FTS4_UNICODE61 #cgo CFLAGS: -DSQLITE_TRACE_SIZE_LIMIT=15 #cgo CFLAGS: -DSQLITE_OMIT_DEPRECATED #cgo CFLAGS: -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1 |