Commit 6f6a17db05a83620cef4572761831c20a70ba9b9

Steve Frécinaux 2008-12-31T01:48:36

Fix pkgconfig file wrt last added dependencies libz and libcrypto dependencies were added recently while libgit2.pc did not get updated. Signed-off-by: Steve Frécinaux <code@istique.net> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/libgit2.pc.in b/libgit2.pc.in
index 9e2cd50..89528ef 100644
--- a/libgit2.pc.in
+++ b/libgit2.pc.in
@@ -6,6 +6,6 @@ includedir=${prefix}/include
 Name: libgit2
 Description: The git library, take 2
 Version: 0.0.1
-Requires: 
-Libs: -L${libdir} -lgit2
+Requires: libcrypto
+Libs: -L${libdir} -lgit2 -lz -lcrypto
 Cflags: -I${includedir}