diff options
author | wiz <wiz@pkgsrc.org> | 2013-07-04 07:25:11 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2013-07-04 07:25:11 +0000 |
commit | 281c06f59f3032c9165c1f686155fccd93080ac1 (patch) | |
tree | e6049424b00d2b5d9eabedff9814b0ea9182f370 /games/gbrainy | |
parent | 1bf682ac8653f2d5868ca808be0d2dc802434e5a (diff) | |
download | pkgsrc-281c06f59f3032c9165c1f686155fccd93080ac1.tar.gz |
Remove patch that is not necessary since 2.2.1
Diffstat (limited to 'games/gbrainy')
-rw-r--r-- | games/gbrainy/patches/patch-src_Core_Libraries_CSharpCompiler.cs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/games/gbrainy/patches/patch-src_Core_Libraries_CSharpCompiler.cs b/games/gbrainy/patches/patch-src_Core_Libraries_CSharpCompiler.cs deleted file mode 100644 index 8cbe7a83f4f..00000000000 --- a/games/gbrainy/patches/patch-src_Core_Libraries_CSharpCompiler.cs +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-src_Core_Libraries_CSharpCompiler.cs,v 1.1 2013/05/29 11:13:41 wiz Exp $ - -Fix -./Libraries/CSharpCompiler.cs(48,20): error CS1729: The type `Mono.CSharp.Report' does not contain a constructor that takes `1' arguments -/usr/pkg/lib/mono/4.0/Mono.CSharp.dll (Location of the symbol related to previous error) -./Libraries/CSharpCompiler.cs(50,16): error CS1729: The type `Mono.CSharp.Evaluator' does not contain a constructor that takes `2' arguments -/usr/pkg/lib/mono/4.0/Mono.CSharp.dll (Location of the symbol related to previous error) -from -http://svnweb.freebsd.org/ports/head/games/gbrainy/files/patch-CSharpCompiler.cs?revision=297313&view=markup - ---- src/Core/Libraries/CSharpCompiler.cs.orig 2011-07-19 18:22:43.000000000 +0000 -+++ src/Core/Libraries/CSharpCompiler.cs -@@ -44,10 +44,7 @@ namespace gbrainy.Core.Libraries - - public CSharpCompiler () - { -- CompilerSettings settings = new CompilerSettings (); -- Report report = new Report (new NullReportPrinter ()); -- -- evaluator = new Evaluator (settings, report); -+ evaluator = new Evaluator (new CompilerContext (new CompilerSettings (), new NullReportPrinter ())); - } - - public void EvaluateCode (string code) |