summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-plugins/tomboy-reminder/files/tomboy-reminder-0.9-mcs-to-gmcs.patch')
-rw-r--r--x11-plugins/tomboy-reminder/files/tomboy-reminder-0.9-mcs-to-gmcs.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/x11-plugins/tomboy-reminder/files/tomboy-reminder-0.9-mcs-to-gmcs.patch b/x11-plugins/tomboy-reminder/files/tomboy-reminder-0.9-mcs-to-gmcs.patch
new file mode 100644
index 000000000000..0040bff88ac5
--- /dev/null
+++ b/x11-plugins/tomboy-reminder/files/tomboy-reminder-0.9-mcs-to-gmcs.patch
@@ -0,0 +1,27 @@
+--- src/Makefile.am 2006-12-21 09:50:16.000000000 -0600
++++ src/Makefile.am 2006-12-21 09:50:21.000000000 -0600
+@@ -1,5 +1,5 @@
+
+-CSC = mcs -debug
++CSC = gmcs -debug
+
+ TARGET_NAME = tomboy-reminder
+ TARGET = $(TARGET_NAME).dll
+--- configure.in 2006-12-21 09:50:32.000000000 -0600
++++ configure.in 2006-12-21 09:51:22.000000000 -0600
+@@ -5,11 +5,11 @@
+ AC_PROG_INSTALL
+
+ #
+-# Find mcs
++# Find gmcs
+ #
+-AC_PATH_PROG(MCS, mcs)
+-if test "x$MCS" = "x" ; then
+- AC_MSG_ERROR([Can't find "mcs", the mono compiler in your PATH])
++AC_PATH_PROG(GMCS, gmcs)
++if test "x$GMCS" = "x" ; then
++ AC_MSG_ERROR([Can't find "gmcs", the mono compiler in your PATH])
+ fi
+
+ #