[blam] Prefer dmcs if it's available



commit b9e0c26558820f223633da04b0ce53fecdbb6382
Author: Carlos MartÃn Nieto <carlos cmartin tk>
Date:   Sun May 13 03:44:47 2012 +0200

    Prefer dmcs if it's available

 configure.in |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/configure.in b/configure.in
index 045caa8..98c035c 100644
--- a/configure.in
+++ b/configure.in
@@ -20,7 +20,10 @@ fi
 
 AC_PATH_PROG(MCS, mcs)
 AC_PATH_PROG(GMCS, gmcs)
-if test "x$GMCS" != "x" ; then
+AC_PATH_PROG(DMCS, dmcs)
+if test "x$DMCS" != "x" ; then
+   MCS=$DMCS
+elif test "x$GMCS" != "x" ; then
    MCS=$GMCS
 fi
 



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