mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
sqlite: does not support non-linux/darwin/windows
This commit is contained in:
parent
dce1f02c9e
commit
67dd094b35
|
@ -1,3 +1,7 @@
|
|||
// +build linux darwin windows
|
||||
|
||||
// limited GOOS due to modernc.org/libc/unistd
|
||||
|
||||
package sqlite
|
||||
|
||||
import (
|
||||
|
|
9
weed/filer/sqlite/sqlite_store_unsupported.go
Normal file
9
weed/filer/sqlite/sqlite_store_unsupported.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
// +build !linux,!darwin,!windows
|
||||
|
||||
// limited GOOS due to modernc.org/libc/unistd
|
||||
|
||||
package sqlite
|
||||
|
||||
func init() {
|
||||
// filer.Stores = append(filer.Stores, &SqliteStore{})
|
||||
}
|
Loading…
Reference in a new issue