summaryrefslogtreecommitdiff
path: root/lang/mono/patches
diff options
context:
space:
mode:
authorkefren <kefren>2008-04-25 11:23:26 +0000
committerkefren <kefren>2008-04-25 11:23:26 +0000
commitd5d5f7735215fbbe86f5764581d809a92f507d01 (patch)
tree2253c64196000154426a80be1460880a36d56964 /lang/mono/patches
parent76b216c7cb9f0eb73687c4f9d3380f86a0b22e53 (diff)
downloadpkgsrc-d5d5f7735215fbbe86f5764581d809a92f507d01.tar.gz
pullup a patch from trunk that fixes a crash when inferring from null
argument anonymous method. This should fix crash when building wip/nemo. Bump pkgrevision Thanks to Marek Safar for pointing me the exact change in mono tree
Diffstat (limited to 'lang/mono/patches')
-rw-r--r--lang/mono/patches/patch-ad12
1 files changed, 12 insertions, 0 deletions
diff --git a/lang/mono/patches/patch-ad b/lang/mono/patches/patch-ad
new file mode 100644
index 00000000000..97b179a25b5
--- /dev/null
+++ b/lang/mono/patches/patch-ad
@@ -0,0 +1,12 @@
+$NetBSD: patch-ad,v 1.14 2008/04/25 11:23:26 kefren Exp $
+--- mcs/mcs/anonymous.cs.orig 2008-04-25 13:42:00.000000000 +0300
++++ mcs/mcs/anonymous.cs 2008-04-25 13:42:44.000000000 +0300
+@@ -1150,7 +1150,7 @@
+
+ public virtual bool HasExplicitParameters {
+ get {
+- return true;
++ return Parameters != null;
+ }
+ }
+