Fix musl build (#1164)
This commit is contained in:
13
sqlite3.go
13
sqlite3.go
@@ -21,7 +21,6 @@ package sqlite3
|
|||||||
#cgo CFLAGS: -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1
|
#cgo CFLAGS: -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1
|
||||||
#cgo CFLAGS: -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT
|
#cgo CFLAGS: -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT
|
||||||
#cgo CFLAGS: -Wno-deprecated-declarations
|
#cgo CFLAGS: -Wno-deprecated-declarations
|
||||||
#cgo linux,!android CFLAGS: -DHAVE_PREAD64=1 -DHAVE_PWRITE64=1
|
|
||||||
#cgo openbsd CFLAGS: -I/usr/local/include
|
#cgo openbsd CFLAGS: -I/usr/local/include
|
||||||
#cgo openbsd LDFLAGS: -L/usr/local/lib
|
#cgo openbsd LDFLAGS: -L/usr/local/lib
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
@@ -48,6 +47,18 @@ package sqlite3
|
|||||||
# define SQLITE_DETERMINISTIC 0
|
# define SQLITE_DETERMINISTIC 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(HAVE_PREAD64) && defined(HAVE_PWRITE64)
|
||||||
|
# undef USE_PREAD
|
||||||
|
# undef USE_PWRITE
|
||||||
|
# define USE_PREAD64 1
|
||||||
|
# define USE_PWRITE64 1
|
||||||
|
#elif defined(HAVE_PREAD) && defined(HAVE_PWRITE)
|
||||||
|
# undef USE_PREAD
|
||||||
|
# undef USE_PWRITE
|
||||||
|
# define USE_PREAD64 1
|
||||||
|
# define USE_PWRITE64 1
|
||||||
|
#endif
|
||||||
|
|
||||||
static int
|
static int
|
||||||
_sqlite3_open_v2(const char *filename, sqlite3 **ppDb, int flags, const char *zVfs) {
|
_sqlite3_open_v2(const char *filename, sqlite3 **ppDb, int flags, const char *zVfs) {
|
||||||
#ifdef SQLITE_OPEN_URI
|
#ifdef SQLITE_OPEN_URI
|
||||||
|
|||||||
Reference in New Issue
Block a user