diff --git a/driver/opt_allow_uri_authority.go b/driver/opt_allow_uri_authority.go index c92e817..b810013 100644 --- a/driver/opt_allow_uri_authority.go +++ b/driver/opt_allow_uri_authority.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_allow_uri_authority package sqlite3 diff --git a/driver/opt_app_armor.go b/driver/opt_app_armor.go index 89947cd..ed795f4 100644 --- a/driver/opt_app_armor.go +++ b/driver/opt_app_armor.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . - +// Copyright (C) 2018 The Go-SQLite3 Authors. +// // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build !windows // +build sqlite_app_armor diff --git a/driver/opt_foreign_keys.go b/driver/opt_foreign_keys.go index fd4f5a7..3c7fb86 100644 --- a/driver/opt_foreign_keys.go +++ b/driver/opt_foreign_keys.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_foreign_keys package sqlite3 diff --git a/driver/opt_foreign_keys_test.go b/driver/opt_foreign_keys_test.go new file mode 100644 index 0000000..1684c05 --- /dev/null +++ b/driver/opt_foreign_keys_test.go @@ -0,0 +1,8 @@ +// Copyright (C) 2018 The Go-SQLite3 Authors. +// +// Use of this source code is governed by an MIT-style +// license that can be found in the LICENSE file. + +// +build cgo + +package sqlite3 diff --git a/driver/opt_fts3_test.go b/driver/opt_fts3_test.go index e06fc5d..26dbe6a 100644 --- a/driver/opt_fts3_test.go +++ b/driver/opt_fts3_test.go @@ -1,8 +1,9 @@ -// Copyright (C) 2015 Yasuhiro Matsumoto . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo package sqlite3 import ( diff --git a/driver/opt_fts5.go b/driver/opt_fts5.go index eba95ce..54aa38f 100644 --- a/driver/opt_fts5.go +++ b/driver/opt_fts5.go @@ -1,8 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_fts5 package sqlite3 diff --git a/driver/opt_icu.go b/driver/opt_icu.go index bffc3b6..fb97e73 100644 --- a/driver/opt_icu.go +++ b/driver/opt_icu.go @@ -1,8 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_icu package sqlite3 diff --git a/driver/opt_introspect.go b/driver/opt_introspect.go index 213d076..f448a46 100644 --- a/driver/opt_introspect.go +++ b/driver/opt_introspect.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . - +// Copyright (C) 2018 The Go-SQLite3 Authors. +// // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_introspect package sqlite3 diff --git a/driver/opt_introspect_test.go b/driver/opt_introspect_test.go index 360a059..0c16502 100644 --- a/driver/opt_introspect_test.go +++ b/driver/opt_introspect_test.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . - +// Copyright (C) 2018 The Go-SQLite3 Authors. +// // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_introspect package sqlite3 diff --git a/driver/opt_json1.go b/driver/opt_json1.go index e8fd315..a35fb21 100644 --- a/driver/opt_json1.go +++ b/driver/opt_json1.go @@ -1,8 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_json sqlite_json1 package sqlite3 diff --git a/driver/opt_secure_delete.go b/driver/opt_secure_delete.go index 0e2f280..c4943d1 100644 --- a/driver/opt_secure_delete.go +++ b/driver/opt_secure_delete.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_secure_delete package sqlite3 diff --git a/driver/opt_delete_fast.go b/driver/opt_secure_delete_fast.go similarity index 66% rename from driver/opt_delete_fast.go rename to driver/opt_secure_delete_fast.go index 8f86b21..1b7a1ae 100644 --- a/driver/opt_delete_fast.go +++ b/driver/opt_secure_delete_fast.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_secure_delete_fast package sqlite3 diff --git a/driver/opt_stat4.go b/driver/opt_stat4.go index 3a34c12..9a37687 100644 --- a/driver/opt_stat4.go +++ b/driver/opt_stat4.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_stat4 package sqlite3 diff --git a/driver/opt_stat4_test.go b/driver/opt_stat4_test.go index d648d09..19a2492 100644 --- a/driver/opt_stat4_test.go +++ b/driver/opt_stat4_test.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_stat4 package sqlite3 diff --git a/driver/opt_userauth.go b/driver/opt_userauth.go index 0812a32..6c386a8 100644 --- a/driver/opt_userauth.go +++ b/driver/opt_userauth.go @@ -1,8 +1,9 @@ -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_userauth package sqlite3 diff --git a/driver/opt_userauth_omit.go b/driver/opt_userauth_omit.go index 806a651..3822d15 100644 --- a/driver/opt_userauth_omit.go +++ b/driver/opt_userauth_omit.go @@ -1,8 +1,9 @@ -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build !sqlite_userauth package sqlite3 diff --git a/driver/opt_userauth_omit_test.go b/driver/opt_userauth_omit_test.go index dd42d43..0cc0f0e 100644 --- a/driver/opt_userauth_omit_test.go +++ b/driver/opt_userauth_omit_test.go @@ -1,8 +1,9 @@ -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build !sqlite_userauth package sqlite3 diff --git a/driver/opt_userauth_test.go b/driver/opt_userauth_test.go index fe9781f..7d75ee2 100644 --- a/driver/opt_userauth_test.go +++ b/driver/opt_userauth_test.go @@ -1,8 +1,9 @@ -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_userauth package sqlite3 diff --git a/driver/opt_vacuum_full.go b/driver/opt_vacuum_full.go index a202c80..4f8053e 100644 --- a/driver/opt_vacuum_full.go +++ b/driver/opt_vacuum_full.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_vacuum_full package sqlite3 diff --git a/driver/opt_vacuum_incr.go b/driver/opt_vacuum_incr.go index 62bbf50..b23e07f 100644 --- a/driver/opt_vacuum_incr.go +++ b/driver/opt_vacuum_incr.go @@ -1,9 +1,9 @@ -// Copyright (C) 2014 Yasuhiro Matsumoto . -// Copyright (C) 2018 G.J.R. Timmer . +// Copyright (C) 2018 The Go-SQLite3 Authors. // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +// +build cgo // +build sqlite_vacuum_incr package sqlite3