2006-01-03 01:05:38 +01:00
|
|
|
# $NetBSD: Makefile,v 1.46 2006/01/03 00:05:38 wiz Exp $
|
2003-03-01 14:11:44 +01:00
|
|
|
|
update to mono 1.1.8
Patch provided by Jerome Laban. The patch also includes improved also includes
improved NetBSD support (implemented by Jerome).
Hi
mono 1.1.8:
Debugger
The Mono Debugger is being released in sync for the first time with the
Mono runtime. We need testers to try it out (the command line debugger
is called `mdb').
Windows.Forms
Here a toplevel list of all things new for 1.1.8 MWF:
DomainUpDown and NumericUpDown implemented First version with DataGrid
support (still incomplete) First version with MDI support (still
incomplete) Drag & Drop implemented for X11 and Win32 Clipboard
implemented for X11 and Win32 HelpProvider implemented ErrorProvider
implemented Cursor class completed ResXWriter and ResXReader completed
SWF.Timers now working properly A bunch of compatibility fixes Image I/O
now working on Win32 (this is actually in System.Drawing) Scaling,
Performance
Harinath has been fine tuning our Regular Expressions class library to
reduce allocations which translate into an increase in performance
(about 10% on the output match). Regexp.Replace will now be O(number of
$s in the replacement string) instead of O(length of replacement
string). The
The 1024 limit on Socket.Select is gone, Mono will now use poll when
available.
System.Web will consume less memory as well (Gonzalo).
Code Access Security
Sebastien's progress in this release:
AppDomain based sandboxes are supported (limited by #74411); Stack
propagation for async code, threads and SWF; Default policies (like
LocalIntranet, Internet...) are now supported; The new features allows
NRobot 0.20 (http://home.gna.org/nrobot/) to "work" (as much as the
permissions are currently present in the class libraries) on Mono 1.1.8
with a single modification (change the imperative assert in
NRobot/Engine/GameArena.cs to a declarative assert).
ASP.NET 2.x controls
Lluis completed various new controls for ASP.NET 2.x: ImageMap, Wizard,
SiteMapDataSource and SiteMapPath.
Reflection
Lluis added support for producing debugging information from
Reflection.Emit. This means that all the Reflection-based compilers and
VMs will be able to produce debugging information and have the Mono
debugger step through the code.
Packaging
mono-ikvm has been merged into mono-core. Should make it easier for
people to get ikvm
mono-nunit is back with the nunit stuff. Needed for mono-tools
Mono-shlib-cop
Jonathan Pryor has contributed this tool to assist developers that use
P/Invoke.
mono-shlib-cop is a tool that inspects a managed assembly looking for
erroneous or suspecious behavior of shared libraries.
The tool takes one or more assembly filenames, and inspects each
assembly specified.
The errors checked for include:
Does the shared library exist? Does the requested symbol exist within
the shared library? It also checks if a program uses shared libraries
that are part of a -devel package.
VB.NET
New on this release: late binding, decimal, named arguments, optiona
byrefs,
Mono.Unix
The Mono.Unix namespace will be replacing the old Mono.Posix in Mono 1.2
and is still under development. In this release cleanups continued and a
few new features are present.
Changes since the last release:
Removed types: MapAttribute, IncludeAttribute, ErrorMarshal,
ErrorMarshal.ErrorTranslator Removed
UnixMarshal.IsErrorDescriptionThreadSafe property Renamed LockFlags enum
to LockfCommand Removed StdioFileStream.FilePosition property and
replaced with RestoreFilePosition() and SaveFilePosition() methods
Renamed UnixConvert.ToFilePermissions(string) to
UnixConvert.FromOctalPermissionString(string) Additions
Syscall.execv(), Syscall.execve(), Syscall.execvp(), Syscall.fexecve()
Syscall.fcntl (int, FcntlCommand, DirectoryNotifyFlags) Syscall.mmap,
Syscall.munmap, Syscall.msync, Syscall.mlock, Syscall.munlock,
Syscall.mlockall, Syscall.munlockall, Syscall.mremap, Syscall.mincore,
Syscall.remap_file_pages Syscall.mkstemp Thread safety for "obvious"
exports from Stdlib, Syscall UnixConvert.ToOctalPermissionString,
UnixConvert.FromUnixPermissionString, UnixConvert.ToUnixPermissionString
UnixFileInfo uses stat(2) now, not lstat(2), so a UnixFileInfo created
on a symlink will give information about the target, not the link. Lots
of documentation added
JScript
Cesar implemented access to local variables in nested functions in
JScript.
Bug fixes, scalability
There are plenty of bug fixes, performance and scalability improvements
that are too detailed to list on the release notes.
mono 1.1.7: The Mono core is pretty much complete for the 1.2 release,
at this point we are only waiting for Windows.Forms to be completed
before we can ship it. At this point we are scheduled to release Mono
1.2 in September.
In the meantime, Mono development has fallen into two categories:
New code: Windows.Forms, libraries from the 2.x profile (ASP.NET 2,
ADO.NET 2), new compilers (JScript, Basic, C# 2.0). ie, non-core
components. New VM features: cross-platform register allocator, new
string collation framework, precise garbage collector. These are being
developed on either branches or on separate trees and do not affect
trunk. The above setup allows us to continue development without
interfering with the stability of Mono 1.1.x.
New I/O Layer
In Mono 1.1.7 we are including Dick Porter's new IO-Layer, which is
daemon-less. Before 1.1.7 Mono would always launch an auxiliary process
that would be used by multiple Mono programs to share information like:
global mutexes (named mutexes), file sharing status per-file, process
and thread status.
Mono no longer requires a separate shared process to provide the
previous features, this has significantly improved Mono's I/O
performance. Beagle is three times as fast indexing files and xsp
tripled its speed.
Http Client Interactions
In the past the HttpWebRequest could starve the ThreadPool and it would
lead to deadlocks as documented on our web site.
Gonzalo deployed a new implementation that does not have these problems
and can take advantage of Linux epoll or kqueue.
This code not only eliminated the potential deadlocks, but also improved
the client http throughput by avoiding unnecessary context switches.
Also ReadWriteTimeout is supported and Abort works properly now.
FreeBSD support
Thanks to Bill Middleton support for i386 FreeBSD (tested against 5.4
and 6.x-CURRENT) is now available.
Windows.Forms
Extensive progress on the Windows.Forms support code since the March
18th release. Jackson wrote a new double-buffering framework to bring
our implementation in line with the expected behavior.
Databinding is now supported on this release (simple and complex data
binding), not all controls are ready though, controls that support it:
ListBox, CheckedListBox and ComboBox (Jackson and Jordi).
Alexander Olk implemented the file dialogs and did various touch-ups to
other dialogs and widgets.
Complete widgets: ImageListStreamer (Jackson),
Prototype widgets: DataGrid widget and data container widgets (Jordi)
and RichTextBox (Peter)
ASP.NET
New ASP.NET 2.0 controls completed: ButtonField, DetailsView, FormView,
GridView, CheckBoxField, HyperlinkField, ImageField, TemplateField by
Lluis.
Implemented support for two-way bindings in ASP.NET, ObjectDataSource
and various improvements to the Menu control.
Gonzalo added support for code render syntax inside non-server tags,
ie., <span <%= (firefox) ? class="cool" : "" %>>
C# Compiler
Hari and Marek continue the work on making the compiler comply more
strictly to the C# specification. In some areas the compiler is faster,
and consumes less memory, but it also provides better error messages and
includes many new warnings that before were ignored.
Martin synchronized the generics compiler codebase with our main
compiler codebase. Also all bug reported on the generics compiler
(except two parsing errors) have now been fixed and the generics class
libraries have been modified to match the Beta2 libraries.
Marek implemented C# 2.0 conditional attributes and DefaultCharSet
attribute.
SSL/TLS
Many important fixes from Sebastien:
Fixed asynchronous operations; Fixed support for client-side
certificates; Performance enhancements; Security
Continued work on the CAS from Sebastien (--security flag).
Exposed more of the Mono.Security libraries as the .NET 2.x framework
includes more features.
New Assemblies.
The following assemblies are now functional:
System.Configuration.Install Written by Muthu Kannan and Harinath Raja.
System.ServiceProcess: Joerg Rosenkranz Completed the support and
implemented the service host daemon.
JavaScript
Cesar's effort on JScript continue, not the compiler implements:
Strict-Equality operators Eval RegularExpressionLiteral For-in statement
Custom constructors Increment/Decrement operators First-class functions
Plus bug fixing.
The JScript's runtime support now supports:
ArrayConstructor's CreateInstance function ArrayPrototype's join method
JSFieldInfo's GetValue and SetValue functions JScriptException's
constructor Initial implementation of LateBinding's CallValue and
SetIndexedPropertyValueStatic Basic Language
Manjula, Sudha and Ankit continued working on the Basic compiler and the
Basic runtime:
Implemented "End statement" Support "Exit Function" Support declaration
of decimal numbers. Support 'Or' argument of AttributeTargets in
AttributeUsage Conditional Constant Directives Support expressions for
directives Support Reference Parameter when parameters and arguments are
different The runtime now features late binding: it is 75% complete. It
works with sub, functions, properties and fields, arrays. Late binding
fit in well with simple expressions (like in conditional expressions and
arithmatic expressions).
Finally, there is support for default values using an attribute by
round-tripping and patching the runtime.
ADO.NET
SQLServer: Added support for Asynchronous command execution (Ankit and
Suresh).
Various disconnected mode improvements: loading datatables.
Mono.Posix assembly
There is a new UnixListener and UnixClient classes in the Mono.Unix
namespace.
Build System
Users will have to do make at least once in Mono before they can do make
in any directory.
2005-07-31 17:26:58 +02:00
|
|
|
DISTNAME= mono-1.1.8.3
|
2006-01-03 01:05:38 +01:00
|
|
|
PKGREVISION= 2
|
2003-03-01 14:11:44 +01:00
|
|
|
CATEGORIES= lang
|
2005-08-03 07:45:22 +02:00
|
|
|
MASTER_SITES= http://go-mono.com/sources/mono-1.1/
|
2003-03-01 14:11:44 +01:00
|
|
|
|
2003-08-09 23:09:22 +02:00
|
|
|
MAINTAINER= recht@NetBSD.org
|
2004-07-04 01:02:50 +02:00
|
|
|
HOMEPAGE= http://www.mono-project.com/
|
2003-03-01 14:11:44 +01:00
|
|
|
COMMENT= Open source implementation of the .NET Development Framework
|
|
|
|
|
2005-12-27 00:39:30 +01:00
|
|
|
PKG_FAIL_REASON+= "Broken on NetBSD/i386 3.0 in pkgsrc-2005Q4"
|
|
|
|
PKG_FAIL_REASON+= "Will be removed in pkgsrc-2006Q1 unless fixed"
|
|
|
|
|
2005-04-04 09:22:34 +02:00
|
|
|
BUILD_DEPENDS+= p5-XML-Parser-[0-9]*:../../textproc/p5-XML-Parser
|
2003-08-09 23:09:22 +02:00
|
|
|
|
2004-02-03 13:30:11 +01:00
|
|
|
CONFLICTS= pnet-[0-9]*
|
2004-01-16 07:40:50 +01:00
|
|
|
|
2003-09-25 18:05:21 +02:00
|
|
|
# XXX please test
|
|
|
|
NOT_FOR_PLATFORM= NetBSD-1.[0-5]*-*
|
|
|
|
NOT_FOR_PLATFORM+= NetBSD-1.6-* NetBSD-1.6.*-*
|
|
|
|
NOT_FOR_PLATFORM+= NetBSD-1.6[A-Z]-* NetBSD-1.6Z[AB]-*
|
2004-02-29 00:41:32 +01:00
|
|
|
|
2005-01-15 00:40:16 +01:00
|
|
|
# LP64 problems
|
2005-03-27 12:25:51 +02:00
|
|
|
NOT_FOR_PLATFORM+= *-*-alpha *-*-sparc64
|
2005-01-15 00:40:16 +01:00
|
|
|
|
2005-08-10 22:56:10 +02:00
|
|
|
USE_TOOLS+= bison gmake gtar perl:run pkg-config
|
2004-02-14 18:21:32 +01:00
|
|
|
USE_LIBTOOL= yes
|
2005-08-03 07:45:22 +02:00
|
|
|
EXTRACT_USING= gtar
|
2003-03-01 14:11:44 +01:00
|
|
|
|
2004-02-03 13:30:11 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2004-06-26 22:19:16 +02:00
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
|
2005-12-05 21:49:47 +01:00
|
|
|
MAKE_FLAGS+= PERL=${PERL5:Q}
|
2005-04-04 09:22:34 +02:00
|
|
|
UNLIMIT_RESOURCES= datasize
|
|
|
|
UNLIMIT_RESOURCES+= stacksize
|
update to mono 1.1.8
Patch provided by Jerome Laban. The patch also includes improved also includes
improved NetBSD support (implemented by Jerome).
Hi
mono 1.1.8:
Debugger
The Mono Debugger is being released in sync for the first time with the
Mono runtime. We need testers to try it out (the command line debugger
is called `mdb').
Windows.Forms
Here a toplevel list of all things new for 1.1.8 MWF:
DomainUpDown and NumericUpDown implemented First version with DataGrid
support (still incomplete) First version with MDI support (still
incomplete) Drag & Drop implemented for X11 and Win32 Clipboard
implemented for X11 and Win32 HelpProvider implemented ErrorProvider
implemented Cursor class completed ResXWriter and ResXReader completed
SWF.Timers now working properly A bunch of compatibility fixes Image I/O
now working on Win32 (this is actually in System.Drawing) Scaling,
Performance
Harinath has been fine tuning our Regular Expressions class library to
reduce allocations which translate into an increase in performance
(about 10% on the output match). Regexp.Replace will now be O(number of
$s in the replacement string) instead of O(length of replacement
string). The
The 1024 limit on Socket.Select is gone, Mono will now use poll when
available.
System.Web will consume less memory as well (Gonzalo).
Code Access Security
Sebastien's progress in this release:
AppDomain based sandboxes are supported (limited by #74411); Stack
propagation for async code, threads and SWF; Default policies (like
LocalIntranet, Internet...) are now supported; The new features allows
NRobot 0.20 (http://home.gna.org/nrobot/) to "work" (as much as the
permissions are currently present in the class libraries) on Mono 1.1.8
with a single modification (change the imperative assert in
NRobot/Engine/GameArena.cs to a declarative assert).
ASP.NET 2.x controls
Lluis completed various new controls for ASP.NET 2.x: ImageMap, Wizard,
SiteMapDataSource and SiteMapPath.
Reflection
Lluis added support for producing debugging information from
Reflection.Emit. This means that all the Reflection-based compilers and
VMs will be able to produce debugging information and have the Mono
debugger step through the code.
Packaging
mono-ikvm has been merged into mono-core. Should make it easier for
people to get ikvm
mono-nunit is back with the nunit stuff. Needed for mono-tools
Mono-shlib-cop
Jonathan Pryor has contributed this tool to assist developers that use
P/Invoke.
mono-shlib-cop is a tool that inspects a managed assembly looking for
erroneous or suspecious behavior of shared libraries.
The tool takes one or more assembly filenames, and inspects each
assembly specified.
The errors checked for include:
Does the shared library exist? Does the requested symbol exist within
the shared library? It also checks if a program uses shared libraries
that are part of a -devel package.
VB.NET
New on this release: late binding, decimal, named arguments, optiona
byrefs,
Mono.Unix
The Mono.Unix namespace will be replacing the old Mono.Posix in Mono 1.2
and is still under development. In this release cleanups continued and a
few new features are present.
Changes since the last release:
Removed types: MapAttribute, IncludeAttribute, ErrorMarshal,
ErrorMarshal.ErrorTranslator Removed
UnixMarshal.IsErrorDescriptionThreadSafe property Renamed LockFlags enum
to LockfCommand Removed StdioFileStream.FilePosition property and
replaced with RestoreFilePosition() and SaveFilePosition() methods
Renamed UnixConvert.ToFilePermissions(string) to
UnixConvert.FromOctalPermissionString(string) Additions
Syscall.execv(), Syscall.execve(), Syscall.execvp(), Syscall.fexecve()
Syscall.fcntl (int, FcntlCommand, DirectoryNotifyFlags) Syscall.mmap,
Syscall.munmap, Syscall.msync, Syscall.mlock, Syscall.munlock,
Syscall.mlockall, Syscall.munlockall, Syscall.mremap, Syscall.mincore,
Syscall.remap_file_pages Syscall.mkstemp Thread safety for "obvious"
exports from Stdlib, Syscall UnixConvert.ToOctalPermissionString,
UnixConvert.FromUnixPermissionString, UnixConvert.ToUnixPermissionString
UnixFileInfo uses stat(2) now, not lstat(2), so a UnixFileInfo created
on a symlink will give information about the target, not the link. Lots
of documentation added
JScript
Cesar implemented access to local variables in nested functions in
JScript.
Bug fixes, scalability
There are plenty of bug fixes, performance and scalability improvements
that are too detailed to list on the release notes.
mono 1.1.7: The Mono core is pretty much complete for the 1.2 release,
at this point we are only waiting for Windows.Forms to be completed
before we can ship it. At this point we are scheduled to release Mono
1.2 in September.
In the meantime, Mono development has fallen into two categories:
New code: Windows.Forms, libraries from the 2.x profile (ASP.NET 2,
ADO.NET 2), new compilers (JScript, Basic, C# 2.0). ie, non-core
components. New VM features: cross-platform register allocator, new
string collation framework, precise garbage collector. These are being
developed on either branches or on separate trees and do not affect
trunk. The above setup allows us to continue development without
interfering with the stability of Mono 1.1.x.
New I/O Layer
In Mono 1.1.7 we are including Dick Porter's new IO-Layer, which is
daemon-less. Before 1.1.7 Mono would always launch an auxiliary process
that would be used by multiple Mono programs to share information like:
global mutexes (named mutexes), file sharing status per-file, process
and thread status.
Mono no longer requires a separate shared process to provide the
previous features, this has significantly improved Mono's I/O
performance. Beagle is three times as fast indexing files and xsp
tripled its speed.
Http Client Interactions
In the past the HttpWebRequest could starve the ThreadPool and it would
lead to deadlocks as documented on our web site.
Gonzalo deployed a new implementation that does not have these problems
and can take advantage of Linux epoll or kqueue.
This code not only eliminated the potential deadlocks, but also improved
the client http throughput by avoiding unnecessary context switches.
Also ReadWriteTimeout is supported and Abort works properly now.
FreeBSD support
Thanks to Bill Middleton support for i386 FreeBSD (tested against 5.4
and 6.x-CURRENT) is now available.
Windows.Forms
Extensive progress on the Windows.Forms support code since the March
18th release. Jackson wrote a new double-buffering framework to bring
our implementation in line with the expected behavior.
Databinding is now supported on this release (simple and complex data
binding), not all controls are ready though, controls that support it:
ListBox, CheckedListBox and ComboBox (Jackson and Jordi).
Alexander Olk implemented the file dialogs and did various touch-ups to
other dialogs and widgets.
Complete widgets: ImageListStreamer (Jackson),
Prototype widgets: DataGrid widget and data container widgets (Jordi)
and RichTextBox (Peter)
ASP.NET
New ASP.NET 2.0 controls completed: ButtonField, DetailsView, FormView,
GridView, CheckBoxField, HyperlinkField, ImageField, TemplateField by
Lluis.
Implemented support for two-way bindings in ASP.NET, ObjectDataSource
and various improvements to the Menu control.
Gonzalo added support for code render syntax inside non-server tags,
ie., <span <%= (firefox) ? class="cool" : "" %>>
C# Compiler
Hari and Marek continue the work on making the compiler comply more
strictly to the C# specification. In some areas the compiler is faster,
and consumes less memory, but it also provides better error messages and
includes many new warnings that before were ignored.
Martin synchronized the generics compiler codebase with our main
compiler codebase. Also all bug reported on the generics compiler
(except two parsing errors) have now been fixed and the generics class
libraries have been modified to match the Beta2 libraries.
Marek implemented C# 2.0 conditional attributes and DefaultCharSet
attribute.
SSL/TLS
Many important fixes from Sebastien:
Fixed asynchronous operations; Fixed support for client-side
certificates; Performance enhancements; Security
Continued work on the CAS from Sebastien (--security flag).
Exposed more of the Mono.Security libraries as the .NET 2.x framework
includes more features.
New Assemblies.
The following assemblies are now functional:
System.Configuration.Install Written by Muthu Kannan and Harinath Raja.
System.ServiceProcess: Joerg Rosenkranz Completed the support and
implemented the service host daemon.
JavaScript
Cesar's effort on JScript continue, not the compiler implements:
Strict-Equality operators Eval RegularExpressionLiteral For-in statement
Custom constructors Increment/Decrement operators First-class functions
Plus bug fixing.
The JScript's runtime support now supports:
ArrayConstructor's CreateInstance function ArrayPrototype's join method
JSFieldInfo's GetValue and SetValue functions JScriptException's
constructor Initial implementation of LateBinding's CallValue and
SetIndexedPropertyValueStatic Basic Language
Manjula, Sudha and Ankit continued working on the Basic compiler and the
Basic runtime:
Implemented "End statement" Support "Exit Function" Support declaration
of decimal numbers. Support 'Or' argument of AttributeTargets in
AttributeUsage Conditional Constant Directives Support expressions for
directives Support Reference Parameter when parameters and arguments are
different The runtime now features late binding: it is 75% complete. It
works with sub, functions, properties and fields, arrays. Late binding
fit in well with simple expressions (like in conditional expressions and
arithmatic expressions).
Finally, there is support for default values using an attribute by
round-tripping and patching the runtime.
ADO.NET
SQLServer: Added support for Asynchronous command execution (Ankit and
Suresh).
Various disconnected mode improvements: loading datatables.
Mono.Posix assembly
There is a new UnixListener and UnixClient classes in the Mono.Unix
namespace.
Build System
Users will have to do make at least once in Mono before they can do make
in any directory.
2005-07-31 17:26:58 +02:00
|
|
|
UNLIMIT_RESOURCES+= memorysize
|
2003-12-03 18:08:24 +01:00
|
|
|
|
2004-02-03 13:30:11 +01:00
|
|
|
PKGCONFIG_OVERRIDE= mint.pc.in
|
2005-03-27 12:25:51 +02:00
|
|
|
PKGCONFIG_OVERRIDE+= mono.pc.in
|
|
|
|
PKGCONFIG_OVERRIDE+= scripts/mono-nunit.pc.in
|
|
|
|
#PKG_SYSCONFSUBDIR= mono
|
2003-03-01 14:11:44 +01:00
|
|
|
|
2005-03-27 12:25:51 +02:00
|
|
|
REPLACE_PERL= mcs/errors/do-tests.pl
|
|
|
|
REPLACE_PERL+= mcs/mbas/Test/test-mbas.pl
|
|
|
|
REPLACE_PERL+= mcs/tools/scan-tests.pl
|
2004-05-11 19:33:42 +02:00
|
|
|
REPLACE_PERL+= mono/benchmark/test-driver
|
2005-03-27 12:25:51 +02:00
|
|
|
REPLACE_PERL+= mono/cil/make-opcodes-def.pl
|
|
|
|
REPLACE_PERL+= mono/metadata/make-bundle.pl
|
|
|
|
REPLACE_PERL+= mono/tests/stress-runner.pl
|
2003-03-01 14:11:44 +01:00
|
|
|
|
|
|
|
EGDIR= ${PREFIX}/share/examples/mono
|
2005-03-27 12:25:51 +02:00
|
|
|
CONF_FILES= ${EGDIR}/config ${PKG_SYSCONFDIR}/mono/config
|
|
|
|
CONF_FILES+= ${EGDIR}/browscap.ini ${PKG_SYSCONFDIR}/mono/browscap.ini
|
|
|
|
#CONF_FILES+= ${EGDIR}/machine.config ${PKG_SYSCONFDIR}/machine.config
|
|
|
|
#CONF_FILES+= ${EGDIR}/DefaultWsdlHelpGenerator.aspx \
|
|
|
|
# ${PKG_SYSCONFDIR}/DefaultWsdlHelpGenerator.aspx
|
2003-03-01 14:11:44 +01:00
|
|
|
|
2005-04-04 09:22:34 +02:00
|
|
|
TEST_TARGET= check
|
|
|
|
|
2004-02-03 13:30:11 +01:00
|
|
|
.include "../../mk/bsd.prefs.mk"
|
2003-12-03 18:08:24 +01:00
|
|
|
|
update to mono 1.1.8
Patch provided by Jerome Laban. The patch also includes improved also includes
improved NetBSD support (implemented by Jerome).
Hi
mono 1.1.8:
Debugger
The Mono Debugger is being released in sync for the first time with the
Mono runtime. We need testers to try it out (the command line debugger
is called `mdb').
Windows.Forms
Here a toplevel list of all things new for 1.1.8 MWF:
DomainUpDown and NumericUpDown implemented First version with DataGrid
support (still incomplete) First version with MDI support (still
incomplete) Drag & Drop implemented for X11 and Win32 Clipboard
implemented for X11 and Win32 HelpProvider implemented ErrorProvider
implemented Cursor class completed ResXWriter and ResXReader completed
SWF.Timers now working properly A bunch of compatibility fixes Image I/O
now working on Win32 (this is actually in System.Drawing) Scaling,
Performance
Harinath has been fine tuning our Regular Expressions class library to
reduce allocations which translate into an increase in performance
(about 10% on the output match). Regexp.Replace will now be O(number of
$s in the replacement string) instead of O(length of replacement
string). The
The 1024 limit on Socket.Select is gone, Mono will now use poll when
available.
System.Web will consume less memory as well (Gonzalo).
Code Access Security
Sebastien's progress in this release:
AppDomain based sandboxes are supported (limited by #74411); Stack
propagation for async code, threads and SWF; Default policies (like
LocalIntranet, Internet...) are now supported; The new features allows
NRobot 0.20 (http://home.gna.org/nrobot/) to "work" (as much as the
permissions are currently present in the class libraries) on Mono 1.1.8
with a single modification (change the imperative assert in
NRobot/Engine/GameArena.cs to a declarative assert).
ASP.NET 2.x controls
Lluis completed various new controls for ASP.NET 2.x: ImageMap, Wizard,
SiteMapDataSource and SiteMapPath.
Reflection
Lluis added support for producing debugging information from
Reflection.Emit. This means that all the Reflection-based compilers and
VMs will be able to produce debugging information and have the Mono
debugger step through the code.
Packaging
mono-ikvm has been merged into mono-core. Should make it easier for
people to get ikvm
mono-nunit is back with the nunit stuff. Needed for mono-tools
Mono-shlib-cop
Jonathan Pryor has contributed this tool to assist developers that use
P/Invoke.
mono-shlib-cop is a tool that inspects a managed assembly looking for
erroneous or suspecious behavior of shared libraries.
The tool takes one or more assembly filenames, and inspects each
assembly specified.
The errors checked for include:
Does the shared library exist? Does the requested symbol exist within
the shared library? It also checks if a program uses shared libraries
that are part of a -devel package.
VB.NET
New on this release: late binding, decimal, named arguments, optiona
byrefs,
Mono.Unix
The Mono.Unix namespace will be replacing the old Mono.Posix in Mono 1.2
and is still under development. In this release cleanups continued and a
few new features are present.
Changes since the last release:
Removed types: MapAttribute, IncludeAttribute, ErrorMarshal,
ErrorMarshal.ErrorTranslator Removed
UnixMarshal.IsErrorDescriptionThreadSafe property Renamed LockFlags enum
to LockfCommand Removed StdioFileStream.FilePosition property and
replaced with RestoreFilePosition() and SaveFilePosition() methods
Renamed UnixConvert.ToFilePermissions(string) to
UnixConvert.FromOctalPermissionString(string) Additions
Syscall.execv(), Syscall.execve(), Syscall.execvp(), Syscall.fexecve()
Syscall.fcntl (int, FcntlCommand, DirectoryNotifyFlags) Syscall.mmap,
Syscall.munmap, Syscall.msync, Syscall.mlock, Syscall.munlock,
Syscall.mlockall, Syscall.munlockall, Syscall.mremap, Syscall.mincore,
Syscall.remap_file_pages Syscall.mkstemp Thread safety for "obvious"
exports from Stdlib, Syscall UnixConvert.ToOctalPermissionString,
UnixConvert.FromUnixPermissionString, UnixConvert.ToUnixPermissionString
UnixFileInfo uses stat(2) now, not lstat(2), so a UnixFileInfo created
on a symlink will give information about the target, not the link. Lots
of documentation added
JScript
Cesar implemented access to local variables in nested functions in
JScript.
Bug fixes, scalability
There are plenty of bug fixes, performance and scalability improvements
that are too detailed to list on the release notes.
mono 1.1.7: The Mono core is pretty much complete for the 1.2 release,
at this point we are only waiting for Windows.Forms to be completed
before we can ship it. At this point we are scheduled to release Mono
1.2 in September.
In the meantime, Mono development has fallen into two categories:
New code: Windows.Forms, libraries from the 2.x profile (ASP.NET 2,
ADO.NET 2), new compilers (JScript, Basic, C# 2.0). ie, non-core
components. New VM features: cross-platform register allocator, new
string collation framework, precise garbage collector. These are being
developed on either branches or on separate trees and do not affect
trunk. The above setup allows us to continue development without
interfering with the stability of Mono 1.1.x.
New I/O Layer
In Mono 1.1.7 we are including Dick Porter's new IO-Layer, which is
daemon-less. Before 1.1.7 Mono would always launch an auxiliary process
that would be used by multiple Mono programs to share information like:
global mutexes (named mutexes), file sharing status per-file, process
and thread status.
Mono no longer requires a separate shared process to provide the
previous features, this has significantly improved Mono's I/O
performance. Beagle is three times as fast indexing files and xsp
tripled its speed.
Http Client Interactions
In the past the HttpWebRequest could starve the ThreadPool and it would
lead to deadlocks as documented on our web site.
Gonzalo deployed a new implementation that does not have these problems
and can take advantage of Linux epoll or kqueue.
This code not only eliminated the potential deadlocks, but also improved
the client http throughput by avoiding unnecessary context switches.
Also ReadWriteTimeout is supported and Abort works properly now.
FreeBSD support
Thanks to Bill Middleton support for i386 FreeBSD (tested against 5.4
and 6.x-CURRENT) is now available.
Windows.Forms
Extensive progress on the Windows.Forms support code since the March
18th release. Jackson wrote a new double-buffering framework to bring
our implementation in line with the expected behavior.
Databinding is now supported on this release (simple and complex data
binding), not all controls are ready though, controls that support it:
ListBox, CheckedListBox and ComboBox (Jackson and Jordi).
Alexander Olk implemented the file dialogs and did various touch-ups to
other dialogs and widgets.
Complete widgets: ImageListStreamer (Jackson),
Prototype widgets: DataGrid widget and data container widgets (Jordi)
and RichTextBox (Peter)
ASP.NET
New ASP.NET 2.0 controls completed: ButtonField, DetailsView, FormView,
GridView, CheckBoxField, HyperlinkField, ImageField, TemplateField by
Lluis.
Implemented support for two-way bindings in ASP.NET, ObjectDataSource
and various improvements to the Menu control.
Gonzalo added support for code render syntax inside non-server tags,
ie., <span <%= (firefox) ? class="cool" : "" %>>
C# Compiler
Hari and Marek continue the work on making the compiler comply more
strictly to the C# specification. In some areas the compiler is faster,
and consumes less memory, but it also provides better error messages and
includes many new warnings that before were ignored.
Martin synchronized the generics compiler codebase with our main
compiler codebase. Also all bug reported on the generics compiler
(except two parsing errors) have now been fixed and the generics class
libraries have been modified to match the Beta2 libraries.
Marek implemented C# 2.0 conditional attributes and DefaultCharSet
attribute.
SSL/TLS
Many important fixes from Sebastien:
Fixed asynchronous operations; Fixed support for client-side
certificates; Performance enhancements; Security
Continued work on the CAS from Sebastien (--security flag).
Exposed more of the Mono.Security libraries as the .NET 2.x framework
includes more features.
New Assemblies.
The following assemblies are now functional:
System.Configuration.Install Written by Muthu Kannan and Harinath Raja.
System.ServiceProcess: Joerg Rosenkranz Completed the support and
implemented the service host daemon.
JavaScript
Cesar's effort on JScript continue, not the compiler implements:
Strict-Equality operators Eval RegularExpressionLiteral For-in statement
Custom constructors Increment/Decrement operators First-class functions
Plus bug fixing.
The JScript's runtime support now supports:
ArrayConstructor's CreateInstance function ArrayPrototype's join method
JSFieldInfo's GetValue and SetValue functions JScriptException's
constructor Initial implementation of LateBinding's CallValue and
SetIndexedPropertyValueStatic Basic Language
Manjula, Sudha and Ankit continued working on the Basic compiler and the
Basic runtime:
Implemented "End statement" Support "Exit Function" Support declaration
of decimal numbers. Support 'Or' argument of AttributeTargets in
AttributeUsage Conditional Constant Directives Support expressions for
directives Support Reference Parameter when parameters and arguments are
different The runtime now features late binding: it is 75% complete. It
works with sub, functions, properties and fields, arrays. Late binding
fit in well with simple expressions (like in conditional expressions and
arithmatic expressions).
Finally, there is support for default values using an attribute by
round-tripping and patching the runtime.
ADO.NET
SQLServer: Added support for Asynchronous command execution (Ankit and
Suresh).
Various disconnected mode improvements: loading datatables.
Mono.Posix assembly
There is a new UnixListener and UnixClient classes in the Mono.Unix
namespace.
Build System
Users will have to do make at least once in Mono before they can do make
in any directory.
2005-07-31 17:26:58 +02:00
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
2004-02-03 13:30:11 +01:00
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
|
|
.include "../../textproc/icu/buildlink3.mk"
|
2005-03-27 12:25:51 +02:00
|
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
|
|
.include "../../textproc/libxslt/buildlink3.mk"
|
2004-02-03 13:30:11 +01:00
|
|
|
|
2003-03-01 14:11:44 +01:00
|
|
|
.include "../../mk/bsd.pkg.mk"
|