diff options
author | mattn <mattn.jp@gmail.com> | 2012-01-09 21:22:53 -0800 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2012-01-09 21:22:53 -0800 |
commit | 9c4d0ce29af7bff31c8483971fa8a0519c14c841 (patch) | |
tree | 5d85924366617d29088e979a44c183b8b48b1381 /sqlite3.go | |
parent | gofix. (diff) | |
parent | Use pkg-config instead of a hardcoded LDFLAGS (diff) | |
download | golite-9c4d0ce29af7bff31c8483971fa8a0519c14c841.tar.gz golite-9c4d0ce29af7bff31c8483971fa8a0519c14c841.tar.xz |
Merge pull request #2 from lye/master
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 ( |