From f7a2577f4bbb946c0db9b049f8c67dfcae9e8bff Mon Sep 17 00:00:00 2001 From: Timotheus Pokorra Date: Mon, 12 Jan 2015 15:05:15 +0100 Subject: do not require gmcs but mcs in the PATH mono from git master does not provide gmcs anymore --- main/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/configure.in') diff --git a/main/configure.in b/main/configure.in index 94e9d58d08..a9155ceaf8 100644 --- a/main/configure.in +++ b/main/configure.in @@ -17,14 +17,14 @@ PACKAGE_VERSION_LABEL="m4_esyscmd_s([grep ^Label ../version.config|cut -d "=" -f COMPAT_ADDIN_VERSION=m4_esyscmd_s([grep ^CompatVersion ../version.config|cut -d "=" -f 2|tr -d '\n']) AC_PATH_PROG(MONO, mono) -AC_PATH_PROG(MCS, gmcs) +AC_PATH_PROG(MCS, mcs) if test "x$MONO" = "x" ; then AC_MSG_ERROR([Can't find "mono" in your PATH]) fi if test "x$MCS" = "x" ; then - AC_MSG_ERROR([Can't find "gmcs" in your PATH]) + AC_MSG_ERROR([Can't find "mcs" in your PATH]) fi AC_PATH_PROG(PKG_CONFIG, pkg-config, no) -- cgit v1.2.3