[tomboy] configure.in: remove gmcs and dmcs checks, add mcs instead



commit 734657e47a4e76acf5feced4defd39f87029e3d8
Author: Alex Tereschenko <frozen and blue gmail com>
Date:   Sun Aug 21 17:00:39 2016 +0200

    configure.in: remove gmcs and dmcs checks, add mcs instead
    
    gmcs and dmcs are outdated these days and mcs is the only correct choice.
    
    Closes #10.

 configure.in |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)
---
diff --git a/configure.in b/configure.in
index 8de992e..352097b 100644
--- a/configure.in
+++ b/configure.in
@@ -35,12 +35,9 @@ AM_GCONF_SOURCE_2
 #
 # Find mcs
 #
-AC_PATH_PROG(GMCS, dmcs)
+AC_PATH_PROG(GMCS, mcs)
 if test "x$GMCS" = "x" ; then
-       AC_PATH_PROG(GMCS, gmcs)
-fi
-if test "x$GMCS" = "x" ; then
-       AC_MSG_ERROR([Can't find "dmcs" or "gmcs" in your PATH])
+       AC_MSG_ERROR([Can't find "mcs" in your PATH, is Mono installed?])
 fi
 
 #


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]