mirror of
https://github.com/containers/podman.git
synced 2025-08-14 11:01:35 +08:00
Add initial SQLite-backed state implementation
This contains the implementation of (most) container functions, with stubs for all pod and volume functions. Presently accessed via environment variable only for testing purposes. Signed-off-by: Matt Heon <mheon@redhat.com>
This commit is contained in:
17
vendor/github.com/mattn/go-sqlite3/sqlite3_other.go
generated
vendored
Normal file
17
vendor/github.com/mattn/go-sqlite3/sqlite3_other.go
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
// Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
|
||||
//
|
||||
// Use of this source code is governed by an MIT-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build !windows
|
||||
|
||||
package sqlite3
|
||||
|
||||
/*
|
||||
#cgo CFLAGS: -I.
|
||||
#cgo linux LDFLAGS: -ldl
|
||||
#cgo linux,ppc LDFLAGS: -lpthread
|
||||
#cgo linux,ppc64 LDFLAGS: -lpthread
|
||||
#cgo linux,ppc64le LDFLAGS: -lpthread
|
||||
*/
|
||||
import "C"
|
Reference in New Issue
Block a user