ports/devel/gitg/files/patch-libgitg_gitg-remote.vala
Ruslan Makhmatkhanov b9f14c0b55 devel/gitg: fix build
- add missing dependency upon security/libsecret
- add upstream patch to fix build with libgit2 0.24.x
2016-03-20 18:12:22 +00:00

14 lines
463 B
Vala

Upstream fix for building against libgit2 0.24.
Should be removed after updating to gitg 3.20.0
--- libgitg/gitg-remote.vala.orig 2015-12-15 14:12:13 UTC
+++ libgitg/gitg-remote.vala
@@ -247,7 +247,7 @@ public class Remote : Ggit.Remote
try
{
yield Async.thread(() => {
- base.connect(direction, new Callbacks(this, callbacks, null));
+ base.connect(direction, new Callbacks(this, callbacks, null), null);
});
}
catch (Error e)