[Mono-bugs] [Bug 32727][Nor] New - compilation problem with SharpZipLib
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
23 Oct 2002 12:06:07 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by vargaz@freemail.hu.
http://bugzilla.ximian.com/show_bug.cgi?id=32727
--- shadow/32727 Wed Oct 23 08:06:07 2002
+++ shadow/32727.tmp.1760 Wed Oct 23 08:06:07 2002
@@ -0,0 +1,38 @@
+Bug#: 32727
+Product: Mono/MCS
+Version: unspecified
+OS: Debian Woody
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: vargaz@freemail.hu
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: compilation problem with SharpZipLib
+
+When compiling the attached testcase, mcs aborts with the following message:
+
+no implementation for interface method
+.IEntryFactory::CreateEntryFromFile(string) in class .EntryFactoryAdapter
+METHOD .ctor()
+METHOD CreateEntry(string)
+METHOD CreateEntryFromFile(string)
+METHOD CreateEntry(byte[])
+
+** ERROR **: file class.c: line 687 (mono_class_setup_vtable): should not
+be reached
+aborting...
+Aborted
+
+---------------
+
+This prevents SharpZipLib from being compiled with mcs. I debugged this a
+bit, and it seems the problem is that mcs creates CreateEntryFromFile
+with flags 'public' instead of 'public virtual hidebysig newslot', as the
+other two methods.