diff options
author | kefren <kefren> | 2008-04-25 11:23:26 +0000 |
---|---|---|
committer | kefren <kefren> | 2008-04-25 11:23:26 +0000 |
commit | 9eb77d777bda821d5eda0b8fb933d7419e16fe3e (patch) | |
tree | 2253c64196000154426a80be1460880a36d56964 /lang/mono | |
parent | d0091afb8f68a1f826da12348fcba26a686831ee (diff) | |
download | pkgsrc-9eb77d777bda821d5eda0b8fb933d7419e16fe3e.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')
-rw-r--r-- | lang/mono/Makefile | 3 | ||||
-rw-r--r-- | lang/mono/distinfo | 3 | ||||
-rw-r--r-- | lang/mono/patches/patch-ad | 12 |
3 files changed, 16 insertions, 2 deletions
diff --git a/lang/mono/Makefile b/lang/mono/Makefile index bb41f482587..0c13a3bab7e 100644 --- a/lang/mono/Makefile +++ b/lang/mono/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.64 2008/04/19 18:42:10 kefren Exp $ +# $NetBSD: Makefile,v 1.65 2008/04/25 11:23:26 kefren Exp $ DISTNAME= mono-${MONO_VERSION} +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= http://go-mono.com/sources/mono/ EXTRACT_SUFX= .tar.bz2 diff --git a/lang/mono/distinfo b/lang/mono/distinfo index 66335a74dde..015d33f62aa 100644 --- a/lang/mono/distinfo +++ b/lang/mono/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.34 2008/04/25 08:14:20 kefren Exp $ +$NetBSD: distinfo,v 1.35 2008/04/25 11:23:26 kefren Exp $ SHA1 (mono-1.9.1.tar.bz2) = a6229bb625dcdbcc992aef3f8049bf1b27205db7 RMD160 (mono-1.9.1.tar.bz2) = 32659841ef5de912b8064f7b1f0452304ffd35d0 @@ -6,6 +6,7 @@ Size (mono-1.9.1.tar.bz2) = 18429855 bytes SHA1 (patch-aa) = 5d9fb5f3a468f415337565021497fa1005716502 SHA1 (patch-ab) = 28217e3c8bbbde2e26d33bf32297e99971e3d436 SHA1 (patch-ac) = 4ca577c2a03a6bc71b198e6dfa87cc6b2b9ad60a +SHA1 (patch-ad) = c03630b88d2614eb3bc37dfc0dc4cd0b0bbe5e63 SHA1 (patch-ae) = f0654c3103e3d69c44158456f481e5a357350cb1 SHA1 (patch-af) = abe2bc406e8f58c00f4d1226bda3c5fb9d4ea36f SHA1 (patch-ag) = 93775d9350fac57f58f20a7f5a512b8f4a3bd1ca 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; + } + } + |