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:
authorLluis Sanchez Gual <lluis@xamarin.com>2015-05-19 11:53:39 +0300
committerLluis Sanchez Gual <lluis@xamarin.com>2015-05-19 11:53:39 +0300
commitb48eb3858777967118ad6da0c45eec99b11c5352 (patch)
tree17b5cf0ed4d58de96d0e931fa8aa469139801b4c /main/configure.in
parent76fbffec7c1999df166956e14ac6a4b92d9d649a (diff)
parentdae48b57cbd7886e32d4a9b7ba7c982ce80ef714 (diff)
Merge remote-tracking branch 'origin/master' into roslyn
Diffstat (limited to 'main/configure.in')
-rw-r--r--main/configure.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/main/configure.in b/main/configure.in
index 9836404435..a9371febc3 100644
--- a/main/configure.in
+++ b/main/configure.in
@@ -232,6 +232,16 @@ fi
AM_CONDITIONAL(ENABLE_WINDOWSPLATFORM, [test x$enable_windowsplatform = xyes])
+if test x$enable_gnomeplatform = xyes && test x$enable_git = xyes; then
+ 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)
+fi
+
dnl Intl
ALL_LINGUAS="cs da de es fr ja pt_BR tr pl it zh_TW zh_CN ru sl ca gl pt sv nl id hu nb ko uk"
AC_SUBST(ALL_LINGUAS)