From 51dff2333e91cd1a3e2059648259f62e3a4f7613 Mon Sep 17 00:00:00 2001 From: Jesse van den Kieboom Date: Sat, 23 Mar 2013 11:30:43 +0100 Subject: [PATCH] Use sqlite amalgamation source on all platforms This removes the need for linking against the sqlite3 dynamic library and provides a more standalone go library --- sqlite3_windows.c => sqlite3.c | 0 sqlite3_other.go | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename sqlite3_windows.c => sqlite3.c (100%) diff --git a/sqlite3_windows.c b/sqlite3.c similarity index 100% rename from sqlite3_windows.c rename to sqlite3.c diff --git a/sqlite3_other.go b/sqlite3_other.go index 58030db..7e428cc 100644 --- a/sqlite3_other.go +++ b/sqlite3_other.go @@ -3,6 +3,6 @@ package sqlite /* -#cgo pkg-config: sqlite3 +#cgo CFLAGS: -I. */ import "C"