I've opened a bug for us to update the makefiles for the next release. Thanks for pointing this out.
Do you want to help develop Dynamic languages on CLR? (http://members.microsoft.com/careers/search/details.aspx?JobID=6D4754DE-11F0-45DF-8B78-DC1B43134038) -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sanghyeon Seo Sent: Friday, March 10, 2006 8:19 AM To: Discussion of IronPython Subject: Re: [IronPython] IronPython 1.0 Beta 4 on Mono The source compiles fine with Mono SVN trunk, revision 57777. However, you need to edit the makefile. Apart from usual csc->gmcs and mkdir -p edit, you need to add two references. It seems that only project files were updated in Beta 4. Edit $(CSC) -t:library -r:../IronMath.dll -out:../IronPython.dll -recurse:IronPython/*.cs to $(CSC) -t:library -r:../IronMath.dll -r:System.Design.dll -r:System.Drawing.dll -out:../IronPython.dll -recurse:IronPython/*.cs After that, it should compile fine with zero errors. Seo Sanghyeon _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
