diff options
author | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-24 11:53:45 +0200 |
---|---|---|
committer | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-24 11:53:45 +0200 |
commit | 6f78e03131d97429e48f307d0483c9fcfcc841b8 (patch) | |
tree | ef67830a0e0030c86817f139d5a75ecf26f407d0 | |
parent | Merge branch 'master' into update/options (diff) | |
download | golite-6f78e03131d97429e48f307d0483c9fcfcc841b8.tar.gz golite-6f78e03131d97429e48f307d0483c9fcfcc841b8.tar.xz |
Update build tags with prefix `sqlite_`
-rw-r--r-- | sqlite3_opt_allow_uri_authority.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_app_armor.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_foreign_keys.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_introspect.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_secure_delete.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_stat4.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_vacuum_full.go | 2 | ||||
-rw-r--r-- | sqlite3_opt_vacuum_incr.go | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/sqlite3_opt_allow_uri_authority.go b/sqlite3_opt_allow_uri_authority.go index d67b05d..2a5c497 100644 --- a/sqlite3_opt_allow_uri_authority.go +++ b/sqlite3_opt_allow_uri_authority.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 allow_uri_authority +// +build sqlite_allow_uri_authority package sqlite3 diff --git a/sqlite3_opt_app_armor.go b/sqlite3_opt_app_armor.go index 0dfc99b..7108c5d 100644 --- a/sqlite3_opt_app_armor.go +++ b/sqlite3_opt_app_armor.go @@ -3,7 +3,7 @@ // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. // +build !windows -// +build app_armor +// +build sqlite_app_armor package sqlite3 diff --git a/sqlite3_opt_foreign_keys.go b/sqlite3_opt_foreign_keys.go index 4aa938c..882a1cd 100644 --- a/sqlite3_opt_foreign_keys.go +++ b/sqlite3_opt_foreign_keys.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 foreign_keys +// +build sqlite_foreign_keys package sqlite3 diff --git a/sqlite3_opt_introspect.go b/sqlite3_opt_introspect.go index 5d692a7..19fd3ee 100644 --- a/sqlite3_opt_introspect.go +++ b/sqlite3_opt_introspect.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 introspect +// +build sqlite_introspect package sqlite3 diff --git a/sqlite3_opt_secure_delete.go b/sqlite3_opt_secure_delete.go index c3bb4ad..0ea5594 100644 --- a/sqlite3_opt_secure_delete.go +++ b/sqlite3_opt_secure_delete.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 secure_delete +// +build sqlite_secure_delete package sqlite3 diff --git a/sqlite3_opt_stat4.go b/sqlite3_opt_stat4.go index 60c4bff..706cb87 100644 --- a/sqlite3_opt_stat4.go +++ b/sqlite3_opt_stat4.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 stat4 +// +build sqlite_stat4 package sqlite3 diff --git a/sqlite3_opt_vacuum_full.go b/sqlite3_opt_vacuum_full.go index 73881a2..7217f95 100644 --- a/sqlite3_opt_vacuum_full.go +++ b/sqlite3_opt_vacuum_full.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 vacuum_full +// +build sqlite_vacuum_full package sqlite3 diff --git a/sqlite3_opt_vacuum_incr.go b/sqlite3_opt_vacuum_incr.go index 9b31a80..8dccc43 100644 --- a/sqlite3_opt_vacuum_incr.go +++ b/sqlite3_opt_vacuum_incr.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 vacuum_incr +// +build sqlite_vacuum_incr package sqlite3 |