Add Feature query support & panic if libgit2 is not thread-aware #354

Merged
carlosmn merged 2 commits from cmn/panic-threading into next 2016-10-31 18:16:27 -05:00
1 changed files with 30 additions and 0 deletions
Showing only changes of commit adb1770ff3 - Show all commits

30
features.go Normal file
View File

@ -0,0 +1,30 @@
package git
/*
#include <git2.h>
*/
import "C"
type Feature int
const (
// libgit2 was built with threading support
FeatureThreads Feature = C.GIT_FEATURE_THREADS
// libgit2 was built with HTTPS support built-in
FeatureHttps Feature = C.GIT_FEATURE_HTTPS
// libgit2 was build with SSH support built-in
FeatureSsh Feature = C.GIT_FEATURE_SSH
// libgit2 was built with nanosecond support for files
FeatureNSec Feature = C.GIT_FEATURE_NSEC
)
// Features returns a bit-flag of Feature values indicating which features the
// loaded libgit2 library has.
func Features() Feature {
features := C.git_libgit2_features()
return Feature(features)
}