Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2015-05-06 19:31:34 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2015-05-06 19:38:57 +0300
commit9335e1852e85be44c0b9af17bdef3527dcaf444b (patch)
tree0edc8dffd821a8c4d2b7e15d16656a3c75ff1f3c /main/configure.in
parent2c5b369cdec20d4bdaef052048df8de06ddde4b7 (diff)
[LibGit2] Document need of libssh2 and cmake on Linux.
Diffstat (limited to 'main/configure.in')
-rw-r--r--main/configure.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/main/configure.in b/main/configure.in
index bfef42f8c8..a2cb283855 100644
--- a/main/configure.in
+++ b/main/configure.in
@@ -120,6 +120,14 @@ MONOADDINS_REQUIRED_VERSION=0.6
GTKSHARP_REQUIRED_VERSION=2.12.8
MONODOC_REQUIRED_VERSION=1.0
+AC_PATH_PROG(CMAKE, cmake, no)
+if test "x$CMAKE" = "xno"; then
+ AC_MSG_ERROR([You need to install cmake for Git support to be built])
+fi
+
+PKG_CHECK_MODULES(LIBSSH2, libssh2)
+AC_SUBST(LIBSSH2_LIBS)
+
PKG_CHECK_MODULES(GLIB_SHARP, glib-sharp-2.0 >= $GTKSHARP_REQUIRED_VERSION)
AC_SUBST(GLIB_SHARP_LIBS)
PKG_CHECK_MODULES(GTK_SHARP, gtk-sharp-2.0 >= $GTKSHARP_REQUIRED_VERSION)