From c6fe4430b76ceeecd6b0b609cca8e705921db0c4 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Tue, 7 Nov 2017 13:46:30 -0500 Subject: Compile-tested implementation of SQL-backed state Signed-off-by: Matthew Heon --- vendor/github.com/mattn/go-sqlite3/sqlite3_other.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 vendor/github.com/mattn/go-sqlite3/sqlite3_other.go (limited to 'vendor/github.com/mattn/go-sqlite3/sqlite3_other.go') diff --git a/vendor/github.com/mattn/go-sqlite3/sqlite3_other.go b/vendor/github.com/mattn/go-sqlite3/sqlite3_other.go new file mode 100644 index 000000000..f721b5e21 --- /dev/null +++ b/vendor/github.com/mattn/go-sqlite3/sqlite3_other.go @@ -0,0 +1,14 @@ +// Copyright (C) 2014 Yasuhiro Matsumoto . +// +// Use of this source code is governed by an MIT-style +// license that can be found in the LICENSE file. +// +build !windows + +package sqlite3 + +/* +#cgo CFLAGS: -I. +#cgo linux LDFLAGS: -ldl +#cgo solaris LDFLAGS: -lc +*/ +import "C" -- cgit v1.2.3-54-g00ecf