diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-02-25 19:43:21 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-02-25 19:43:21 +0000 |
commit | 9281db163813ed12386de28eb2a3cf3076801414 (patch) | |
tree | b59356a79839c295dd24ab2d304f55865b9f3dc7 | |
parent | Temp fix for libgit-0.99 (diff) | |
download | patches-9281db163813ed12386de28eb2a3cf3076801414.tar.bz2 patches-9281db163813ed12386de28eb2a3cf3076801414.tar.xz patches-9281db163813ed12386de28eb2a3cf3076801414.zip |
libgit2-0.99 fix for basket
-rw-r--r-- | kde-misc/basket/libgit2-0.99.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/kde-misc/basket/libgit2-0.99.patch b/kde-misc/basket/libgit2-0.99.patch new file mode 100644 index 0000000..b900fbb --- /dev/null +++ b/kde-misc/basket/libgit2-0.99.patch @@ -0,0 +1,22 @@ +diff --git a/src/application.cpp b/src/application.cpp +index c52fb57..81fcd12 100644 +--- a/src/application.cpp ++++ b/src/application.cpp +@@ -56,7 +56,7 @@ Application::Application(int &argc, char **argv) + + + #ifdef WITH_LIBGIT2 +- #if LIBGIT2_SOVERSION >= 22 ++ #if LIBGIT2_VER_MINOR >= 22 + git_libgit2_init(); + #else + git_threads_init(); +@@ -67,7 +67,7 @@ Application::Application(int &argc, char **argv) + Application::~Application() + { + #ifdef WITH_LIBGIT2 +- #if LIBGIT2_SOVERSION >= 22 ++ #if LIBGIT2_VER_MINOR >= 22 + git_libgit2_shutdown(); + #else + git_threads_shutdown(); |