summaryrefslogtreecommitdiff
path: root/debian/patches/04-use_mcs_instead_of_gmcs.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/04-use_mcs_instead_of_gmcs.patch')
-rw-r--r--debian/patches/04-use_mcs_instead_of_gmcs.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/patches/04-use_mcs_instead_of_gmcs.patch b/debian/patches/04-use_mcs_instead_of_gmcs.patch
new file mode 100644
index 0000000..ccf5bc4
--- /dev/null
+++ b/debian/patches/04-use_mcs_instead_of_gmcs.patch
@@ -0,0 +1,21 @@
+From 11bd7c6fb9fe834cc432c3d892b21cd339f084fd Mon Sep 17 00:00:00 2001
+From: Hylke Bons <hylkebons@gmail.com>
+Date: Wed, 24 Jun 2015 22:57:37 +0100
+Subject: [PATCH] Use "mcs" instead of "gmcs" for the compiler check for mono >
+ 2.10
+
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/configure.ac
++++ b/configure.ac
+@@ -39,7 +39,7 @@
+
+ if test "x$has_mono" = "xtrue"; then
+ 1 AC_PATH_PROG(RUNTIME, mono, no)
+- AC_PATH_PROG(CSC, gmcs, no)
++ AC_PATH_PROG(CSC, mcs, no)
+ LIB_PREFIX=.so
+ LIB_SUFFIX=
+ else