diff options
author | Peter Johanson <latexer@gentoo.org> | 2006-10-27 06:10:04 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2006-10-27 06:10:04 +0000 |
commit | 0368126f3d1d4c1eab24bb820b231bcbd8097d37 (patch) | |
tree | 4188c517685e434c90f779f0454c74348dace50f /dev-lang/mono/files | |
parent | amd64 stable, bug 144170 (diff) | |
download | gentoo-2-0368126f3d1d4c1eab24bb820b231bcbd8097d37.tar.gz gentoo-2-0368126f3d1d4c1eab24bb820b231bcbd8097d37.tar.bz2 gentoo-2-0368126f3d1d4c1eab24bb820b231bcbd8097d37.zip |
Fix nasty bug in mcs cause banshee not to compile. See bug #152843.
(Portage version: 2.1.2_pre2-r8)
Diffstat (limited to 'dev-lang/mono/files')
-rw-r--r-- | dev-lang/mono/files/mono-1.1.18-mcs-crasher-fix.diff | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dev-lang/mono/files/mono-1.1.18-mcs-crasher-fix.diff b/dev-lang/mono/files/mono-1.1.18-mcs-crasher-fix.diff new file mode 100644 index 000000000000..c3aaec8a03a5 --- /dev/null +++ b/dev-lang/mono/files/mono-1.1.18-mcs-crasher-fix.diff @@ -0,0 +1,12 @@ +Index: mcs/anonymous.cs +=================================================================== +--- mcs/anonymous.cs (revision 66810) ++++ mcs/anonymous.cs (revision 66811) +@@ -1232,6 +1232,7 @@ + + aec.CurrentAnonymousMethod = this; + aec.IsFieldInitializer = ec.IsFieldInitializer; ++ aec.IsStatic = ec.IsStatic; + + Report.Debug (64, "RESOLVE ANONYMOUS METHOD #1", this, Location, ec, aec, + RootScope, Parameters, Block); |