aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
authorEvan Jones <evan.jones@datadoghq.com>2020-11-16 12:00:32 -0500
committerGitHub <noreply@github.com>2020-11-17 02:00:32 +0900
commit943e8f860d9ddef2f3abed3b34102d775e181561 (patch)
tree9920bf8ba0061d73c41efac48b801eb43c5b8c95 /sqlite3.go
parentsqlite3.go: remove -DSQLITE_DISABLE_INTRINSIC: better builds (#878) (diff)
downloadgolite-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.
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/sqlite3.go b/sqlite3.go
index ca805fa..a66c7f7 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -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