Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2004-05-07 07:06:56 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-05-07 07:06:56 +0400
commita404df78f4e1c2e44de3757ba87e40e520defae4 (patch)
tree0b81ae80bc2006fee686baa651c21dd6fda1824e /mcs/class/System/Assembly
parent8749e7b04d638556a36122372bcc7d9cd1e466b0 (diff)
(AssemblyDelaySign, AssemblyKeyFile): Disable
for BOOTSTRAP_WITH_OLDLIB. Mono 0.31 runtime crashes with them. svn path=/trunk/mcs/; revision=26876
Diffstat (limited to 'mcs/class/System/Assembly')
-rw-r--r--mcs/class/System/Assembly/AssemblyInfo.cs2
-rw-r--r--mcs/class/System/Assembly/ChangeLog5
2 files changed, 7 insertions, 0 deletions
diff --git a/mcs/class/System/Assembly/AssemblyInfo.cs b/mcs/class/System/Assembly/AssemblyInfo.cs
index ff3ae2a2c5a..66f927d9b7c 100644
--- a/mcs/class/System/Assembly/AssemblyInfo.cs
+++ b/mcs/class/System/Assembly/AssemblyInfo.cs
@@ -45,5 +45,7 @@ using System.Runtime.InteropServices;
[assembly: AllowPartiallyTrustedCallers]
[assembly: ComVisible(false)]
+#if ! BOOTSTRAP_WITH_OLDLIB
[assembly: AssemblyDelaySign(true)]
[assembly: AssemblyKeyFile("../ecma.pub")]
+#endif
diff --git a/mcs/class/System/Assembly/ChangeLog b/mcs/class/System/Assembly/ChangeLog
index e0288439bff..84a14ceb521 100644
--- a/mcs/class/System/Assembly/ChangeLog
+++ b/mcs/class/System/Assembly/ChangeLog
@@ -1,3 +1,8 @@
+2004-05-07 Raja R Harinath <rharinath@novell.com>
+
+ * AssemblyInfo.cs (AssemblyDelaySign, AssemblyKeyFile): Disable
+ for BOOTSTRAP_WITH_OLDLIB. Mono 0.31 runtime crashes with them.
+
2004-05-03 Lluis Sanchez Gual <lluis@ximian.com>
* Consts.cs: Added consts for NET_2_0.