diff options
author | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-24 11:55:02 +0200 |
---|---|---|
committer | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-24 11:55:02 +0200 |
commit | 765f6e93d28885358c2b14c885a63424d8bd68a8 (patch) | |
tree | 89c3a38e61cf0c29a88beb3398344eb5d9b5903f | |
parent | Update build tags with prefix `sqlite_` (diff) | |
download | golite-765f6e93d28885358c2b14c885a63424d8bd68a8.tar.gz golite-765f6e93d28885358c2b14c885a63424d8bd68a8.tar.xz |
Update prefix of build tags to `sqlite_`
* Keep current build tags backwards compliant
* Added alias for `sqlite_json1` => `sqlite_json`
-rw-r--r-- | sqlite3_opt_fts5.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_icu.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_json1.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_vtable.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_vtable_test.go | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/sqlite3_opt_fts5.go b/sqlite3_opt_fts5.go index 0e65d69..9126272 100644 --- a/sqlite3_opt_fts5.go +++ b/sqlite3_opt_fts5.go @@ -2,7 +2,7 @@ // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. -// +build fts5 +// +build sqlite_fts5 fts5 package sqlite3 diff --git a/sqlite3_opt_icu.go b/sqlite3_opt_icu.go index e960626..8807aef 100644 --- a/sqlite3_opt_icu.go +++ b/sqlite3_opt_icu.go @@ -2,7 +2,7 @@ // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. -// +build icu +// +build sqlite_icu icu package sqlite3 diff --git a/sqlite3_opt_json1.go b/sqlite3_opt_json1.go index a7b2473..993f037 100644 --- a/sqlite3_opt_json1.go +++ b/sqlite3_opt_json1.go @@ -2,7 +2,7 @@ // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. -// +build json1 +// +build sqlite_json sqlite_json1 json1 package sqlite3 diff --git a/sqlite3_opt_vtable.go b/sqlite3_opt_vtable.go index 8bef291..3391756 100644 --- a/sqlite3_opt_vtable.go +++ b/sqlite3_opt_vtable.go @@ -2,7 +2,7 @@ // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. -// +build vtable +// +build sqlite_vtable vtable package sqlite3 diff --git a/sqlite3_opt_vtable_test.go b/sqlite3_opt_vtable_test.go index ce6a48c..51dcd0f 100644 --- a/sqlite3_opt_vtable_test.go +++ b/sqlite3_opt_vtable_test.go @@ -2,7 +2,7 @@ // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. -// +build vtable +// +build sqlite_vtable vtable package sqlite3 |