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:
-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)