mirror of
https://github.com/containers/skopeo.git
synced 2025-09-27 05:03:41 +00:00
Update to use the correct c/image/v4 import path, work originally from https://github.com/containers/skopeo/pull/733 by Valentin Rothberg <rothberg@redhat.com>. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
27 lines
487 B
Go
27 lines
487 B
Go
// +build linux,!btrfs_noversion,cgo
|
|
|
|
package btrfs
|
|
|
|
/*
|
|
#include <btrfs/version.h>
|
|
|
|
// around version 3.16, they did not define lib version yet
|
|
#ifndef BTRFS_LIB_VERSION
|
|
#define BTRFS_LIB_VERSION -1
|
|
#endif
|
|
|
|
// upstream had removed it, but now it will be coming back
|
|
#ifndef BTRFS_BUILD_VERSION
|
|
#define BTRFS_BUILD_VERSION "-"
|
|
#endif
|
|
*/
|
|
import "C"
|
|
|
|
func btrfsBuildVersion() string {
|
|
return string(C.BTRFS_BUILD_VERSION)
|
|
}
|
|
|
|
func btrfsLibVersion() int {
|
|
return int(C.BTRFS_LIB_VERSION)
|
|
}
|