diff options
| author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-08 13:25:25 +0100 |
|---|---|---|
| committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-08 13:25:25 +0100 |
| commit | 2d69fd13e8bd0a2bd5dab3bbf225d3db6d775846 (patch) | |
| tree | 0f650c87eb5431549bfb9e950405ba2493ebec37 /kde-misc/basket/files/basket-2.49b-libgit2-0.99-compat.patch | |
| parent | b308ec155cc97462bf43ed294990cb3b6be4fce3 (diff) | |
| download | kde-2d69fd13e8bd0a2bd5dab3bbf225d3db6d775846.tar.gz kde-2d69fd13e8bd0a2bd5dab3bbf225d3db6d775846.tar.bz2 kde-2d69fd13e8bd0a2bd5dab3bbf225d3db6d775846.zip | |
kde-misc/basket: Project moved (back) to kde.org
https://cgit.kde.org/sysadmin/repo-metadata.git/commit/?id=44c76e85b18f55ec24986aad45bf390dc7b414b3
Package-Manager: Portage-2.3.92, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-misc/basket/files/basket-2.49b-libgit2-0.99-compat.patch')
| -rw-r--r-- | kde-misc/basket/files/basket-2.49b-libgit2-0.99-compat.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/kde-misc/basket/files/basket-2.49b-libgit2-0.99-compat.patch b/kde-misc/basket/files/basket-2.49b-libgit2-0.99-compat.patch new file mode 100644 index 00000000000..94793a090f1 --- /dev/null +++ b/kde-misc/basket/files/basket-2.49b-libgit2-0.99-compat.patch @@ -0,0 +1,32 @@ +From 094580f207b5ba9f44e9af00834f9c93f06fb440 Mon Sep 17 00:00:00 2001 +From: Dan Goodliffe <dan@randomdan.homeip.net> +Date: Thu, 27 Feb 2020 18:04:21 +0000 +Subject: [PATCH] Use LIBGIT2_VER_MINOR for version test + +Addresses compatibility with libgit2-0.99 +--- + src/application.cpp | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/application.cpp b/src/application.cpp +index c52fb574..81fcd121 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(); |
