Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTorello Querci <torello@torosoft.com>2010-01-12 14:49:21 (GMT)
committer Torello Querci <torello@torosoft.com>2010-01-12 14:49:21 (GMT)
commitebff6cc526de0210bc106db1b8b93d93900309fc (patch)
tree5d2d0a08037c9c5d8632298942c817e405b3ba9e
parent438df772b91e6ecfee2dc18ca792dc9f9a24b33c (diff)
Fix a problem on ubuntu distro.
Thanks to mnencia.
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 6e433fd..e673e03 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,10 +11,10 @@ if test "x$PKG_CONFIG" = "xno"; then
AC_MSG_ERROR([You need to install pkg-config])
fi
-dnl C# compiler
-AC_PATH_PROGS(CSC, [csc mono-csc], no)
-AC_PATH_PROGS(MCS, [mcs gmcs], no)
-AC_PATH_PROG(MONO, mono, no)
+dnl --- Check for mono and gmcs
+
+AC_PATH_PROG(MONO, mono)
+AC_PATH_PROG(MCS, gmcs)
CS="C#"
if test "x$CSC" = "xno" -a "x$MCS" = "xno" ; then