bless-0.6.0-mono-4.patch 969 B

12345678910111213141516171819202122232425262728293031323334353637
  1. diff --git a/builder/ModuleBuilder.cs b/builder/ModuleBuilder.cs
  2. index 0f62e92..7edb1ab 100644
  3. --- a/builder/ModuleBuilder.cs
  4. +++ b/builder/ModuleBuilder.cs
  5. @@ -119,7 +119,7 @@ public class ModuleBuilder
  6. //System.Console.WriteLine("gmcs {0}", sb.ToString());
  7. System.Console.WriteLine(">> Building module {0}...", module.Name);
  8. - Process buildProcess = Process.Start("gmcs", sb.ToString());
  9. + Process buildProcess = Process.Start("mcs", sb.ToString());
  10. buildProcess.WaitForExit();
  11. if (buildProcess.ExitCode == 0) {
  12. @@ -137,4 +137,4 @@ public class ModuleBuilder
  13. }
  14. -}
  15. \ No newline at end of file
  16. +}
  17. diff --git a/configure.ac b/configure.ac
  18. index 415cc64..a8e527c 100644
  19. --- a/configure.ac
  20. +++ b/configure.ac
  21. @@ -24,9 +24,9 @@ if test "x$PKG_CONFIG" = "xno"; then
  22. fi
  23. # C# compiler
  24. -AC_PATH_PROG(MCS, gmcs, no)
  25. +AC_PATH_PROG(MCS, mcs, no)
  26. -CS="gmcs C#"
  27. +CS="mcs C#"
  28. if test "x$MCS" = "xno" ; then
  29. AC_MSG_ERROR([No $CS compiler found])
  30. fi