forked from mirror/go-sqlcipher
Merge pull request #2 from lye/master
Use pkg-config instead of a hardcoded LDFLAGS
This commit is contained in:
commit
9c4d0ce29a
|
@ -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);
|
return sqlite3_bind_blob(stmt, n, p, np, SQLITE_TRANSIENT);
|
||||||
}
|
}
|
||||||
|
|
||||||
#cgo LDFLAGS: -lsqlite3
|
#cgo pkg-config: sqlite3
|
||||||
*/
|
*/
|
||||||
import "C"
|
import "C"
|
||||||
import (
|
import (
|
||||||
|
|
Loading…
Reference in New Issue