diff options
author | lye <lye@> | 2012-01-10 00:16:34 +0000 |
---|---|---|
committer | lye <lye@> | 2012-01-10 00:16:34 +0000 |
commit | 6a23a746e13aac7dfedb85b5c12db17533b420e0 (patch) | |
tree | 5d85924366617d29088e979a44c183b8b48b1381 /sqlite3.go | |
parent | gofix. (diff) | |
download | golite-6a23a746e13aac7dfedb85b5c12db17533b420e0.tar.gz golite-6a23a746e13aac7dfedb85b5c12db17533b420e0.tar.xz |
Use pkg-config instead of a hardcoded LDFLAGS
Diffstat (limited to 'sqlite3.go')
-rw-r--r-- | sqlite3.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ _sqlite3_bind_blob(sqlite3_stmt *stmt, int n, void *p, int np) { return sqlite3_bind_blob(stmt, n, p, np, SQLITE_TRANSIENT); } -#cgo LDFLAGS: -lsqlite3 +#cgo pkg-config: sqlite3 */ import "C" import ( |