mono.git
11 years ago[System.Configuration]: SaveMode and UserLevel.
Martin Baulig [Fri, 21 Dec 2012 09:05:00 +0000 (10:05 +0100)]
[System.Configuration]: SaveMode and UserLevel.

* Configuration.Save() and SaveAs() now honors the
  `ConfigurationSaveMode' argument.

* Check whether the file has been modified prior to saving.

* Fix ConfigurationUserLevel inheritance.

* Implement ConfigurationElement.IsModified().

* New ConfigurationSaveTest.cs test:

  - load a custom section using different parent configuration
    files using ExeConfigurationFileMap and different
    ConfigurationUserLevel values.

  - save configuration using different ConfigurationSaveMode
    arguments and different inherited parent configurations.

* ExeConfigurationFileMapTest.cs: Add error checks for missing
  required filenames.

* New TestUtil.cs helper class:

  - RunWithTempFile() and RunWithTempFiles() helper functions.
  - DotNetVersion, ThisDllName and ThisConfigFileName properties,
    moving all the #ifdef's into one central place.

11 years agoAdd missing .gitignore.
Martin Baulig [Fri, 21 Dec 2012 07:15:35 +0000 (08:15 +0100)]
Add missing .gitignore.

11 years agoAdd the now auto-generated Makefile.am to .gitignore.
Martin Baulig [Fri, 21 Dec 2012 05:30:55 +0000 (06:30 +0100)]
Add the now auto-generated Makefile.am to .gitignore.

11 years ago[monodoc] Add EcmaUrlParser.jay to EXTRA_DIST
Jérémie Laval [Thu, 20 Dec 2012 23:36:39 +0000 (00:36 +0100)]
[monodoc] Add EcmaUrlParser.jay to EXTRA_DIST

11 years ago[monodoc] Fix dist
Jérémie Laval [Thu, 20 Dec 2012 20:07:18 +0000 (21:07 +0100)]
[monodoc] Fix dist

11 years ago[mdoc] Use monodoc improved API
Jérémie Laval [Thu, 20 Dec 2012 19:33:52 +0000 (20:33 +0100)]
[mdoc] Use monodoc improved API

11 years ago[monkeydoc] Add missing sources
Jérémie Laval [Thu, 20 Dec 2012 19:27:08 +0000 (20:27 +0100)]
[monkeydoc] Add missing sources

11 years ago[monkeydoc] More renaming
Jérémie Laval [Thu, 20 Dec 2012 19:26:28 +0000 (20:26 +0100)]
[monkeydoc] More renaming

11 years ago[monkeydoc] Replace monodoc by monkeydoc
Jérémie Laval [Thu, 20 Dec 2012 19:18:11 +0000 (20:18 +0100)]
[monkeydoc] Replace monodoc by monkeydoc

11 years ago[monkeydoc] Change namespace base from MonkeyDoc to Monodoc.
Jérémie Laval [Thu, 20 Dec 2012 19:15:36 +0000 (20:15 +0100)]
[monkeydoc] Change namespace base from MonkeyDoc to Monodoc.

11 years ago[monkeydoc] Fix reference recursion
Jérémie Laval [Thu, 20 Dec 2012 19:12:46 +0000 (20:12 +0100)]
[monkeydoc] Fix reference recursion

11 years ago[monkeydoc] Add more legacy methods
Jérémie Laval [Thu, 20 Dec 2012 16:43:42 +0000 (17:43 +0100)]
[monkeydoc] Add more legacy methods

11 years ago[runtime/docs] Update toc
Jérémie Laval [Thu, 20 Dec 2012 16:31:57 +0000 (17:31 +0100)]
[runtime/docs] Update toc

11 years ago[monkeydoc] Add back several legacy members in their own class for maximum compatibility
Jérémie Laval [Thu, 20 Dec 2012 15:54:39 +0000 (16:54 +0100)]
[monkeydoc] Add back several legacy members in their own class for maximum compatibility

11 years ago[monkeydoc] Restore XHTML provider generation
Jérémie Laval [Thu, 20 Dec 2012 14:15:45 +0000 (15:15 +0100)]
[monkeydoc] Restore XHTML provider generation

11 years ago[monkeydoc] Let XHTML have its node sorted by .Element rather than .Caption
Jérémie Laval [Thu, 20 Dec 2012 14:14:45 +0000 (15:14 +0100)]
[monkeydoc] Let XHTML have its node sorted by .Element rather than .Caption

11 years ago[monkeydoc] Close FileStream early in when adding man pages.
Jérémie Laval [Thu, 20 Dec 2012 14:13:35 +0000 (15:13 +0100)]
[monkeydoc] Close FileStream early in when adding man pages.

11 years ago[monkeydoc] When encountering an old tree, we force nodes to be re-sorted as they...
Jérémie Laval [Wed, 19 Dec 2012 17:36:49 +0000 (18:36 +0100)]
[monkeydoc] When encountering an old tree, we force nodes to be re-sorted as they are instantiated to make sure the later match machinery works.

11 years ago[monkeydoc] Use StringComparison.Ordinal to match element
Jérémie Laval [Wed, 19 Dec 2012 17:35:20 +0000 (18:35 +0100)]
[monkeydoc] Use StringComparison.Ordinal to match element

11 years ago[monkeydoc] Introduce support for versioned tree and gracefully handle old trees.
Jérémie Laval [Wed, 19 Dec 2012 17:34:37 +0000 (18:34 +0100)]
[monkeydoc] Introduce support for versioned tree and gracefully handle old trees.

11 years ago[monkeydoc] Early return if no proper fallback index was found in MatchNode
Jérémie Laval [Wed, 19 Dec 2012 17:33:12 +0000 (18:33 +0100)]
[monkeydoc] Early return if no proper fallback index was found in MatchNode

11 years ago[corlib] Optimize System.Nullable<T>.GetValueOrDefault().
Jonathan Pryor [Thu, 20 Dec 2012 17:09:05 +0000 (12:09 -0500)]
[corlib] Optimize System.Nullable<T>.GetValueOrDefault().

Optimize System.Nullable<T>.GetValueOrDefault().

See discussion at:
http://ericlippert.com/2012/12/20/nullable-micro-optimizations-part-one/

If a variable of nullable value type is initialized with the
default constructor then the [has_value] field will be its
default value, false, and the value field will be default(T).

Since we know that Nullable<T>.value will be the default value when
the default constructor has executed, we can return it directly
instead of checking the has_value field.

11 years agoCorrect the count so we deserialize properly
Neale Ferguson [Wed, 19 Dec 2012 21:05:37 +0000 (16:05 -0500)]
Correct the count so we deserialize properly

11 years agofixup! [monkeydoc] Rename to use proper casing
Jérémie Laval [Wed, 19 Dec 2012 11:10:46 +0000 (12:10 +0100)]
fixup! [monkeydoc] Rename to use proper casing

11 years ago[monkeydoc] Rename to use proper casing
Jérémie Laval [Wed, 19 Dec 2012 11:09:13 +0000 (12:09 +0100)]
[monkeydoc] Rename to use proper casing

11 years ago[monkeydoc] Add forgotten test
Jérémie Laval [Wed, 19 Dec 2012 10:25:23 +0000 (11:25 +0100)]
[monkeydoc] Add forgotten test

11 years ago[monkey] Fix test dir casing
Jérémie Laval [Wed, 19 Dec 2012 10:25:02 +0000 (11:25 +0100)]
[monkey] Fix test dir casing

11 years ago[monkeydoc] New test requires System.Xml
Jérémie Laval [Tue, 18 Dec 2012 17:43:39 +0000 (18:43 +0100)]
[monkeydoc] New test requires System.Xml

11 years ago[monkeydoc] Add RawGenerator to allow to retrieve the content of a documentation...
Jérémie Laval [Tue, 18 Dec 2012 17:42:18 +0000 (18:42 +0100)]
[monkeydoc] Add RawGenerator to allow to retrieve the content of a documentation archive (in whatever initial format they are).

This allow to provide similar behavior than GetEcmaXml but in a cross-help source way and integrated into our generation pipeline.

11 years ago[monkeydoc] Add RenderUrl overload without out parameters
Jérémie Laval [Tue, 18 Dec 2012 17:41:02 +0000 (18:41 +0100)]
[monkeydoc] Add RenderUrl overload without out parameters

11 years ago[monkeydoc] Fix regression, use a global counter to avoid duplicate entry in .zip.
Jérémie Laval [Tue, 18 Dec 2012 17:40:27 +0000 (18:40 +0100)]
[monkeydoc] Fix regression, use a global counter to avoid duplicate entry in .zip.

11 years ago[monkeydoc] Fix regression in processing non-existent entry in index.xml files
Jérémie Laval [Tue, 18 Dec 2012 17:39:56 +0000 (18:39 +0100)]
[monkeydoc] Fix regression in processing non-existent entry in index.xml files

11 years ago[monkeydoc] Add trimmed-down overrides to GetHelpSourceAndIdForUrl
Jérémie Laval [Tue, 18 Dec 2012 12:46:45 +0000 (13:46 +0100)]
[monkeydoc] Add trimmed-down overrides to GetHelpSourceAndIdForUrl

11 years ago[monkeydoc] Null out helpSource if the hint was wrong.
Jérémie Laval [Tue, 18 Dec 2012 12:46:23 +0000 (13:46 +0100)]
[monkeydoc] Null out helpSource if the hint was wrong.

11 years ago[monkeydoc] Add an extra optional HelpSource parameter to RenderUrl and GetHelpSource...
Jérémie Laval [Mon, 17 Dec 2012 18:55:41 +0000 (19:55 +0100)]
[monkeydoc] Add an extra optional HelpSource parameter to RenderUrl and GetHelpSourceAndIdForUrl to provide a hint to where to start matching.

11 years ago[monkeydoc] Log parameter status when an error occurs in the HTML generator
Jérémie Laval [Mon, 17 Dec 2012 18:54:59 +0000 (19:54 +0100)]
[monkeydoc] Log parameter status when an error occurs in the HTML generator

11 years ago[monkeydoc] Protect GetIndex and GetSearchIndex and make them returns null if somethi...
Jérémie Laval [Mon, 17 Dec 2012 18:54:21 +0000 (19:54 +0100)]
[monkeydoc] Protect GetIndex and GetSearchIndex and make them returns null if somethings goes wrong.

11 years ago[monkeydoc] Instantiate both app and library configuration
Jérémie Laval [Mon, 17 Dec 2012 18:53:44 +0000 (19:53 +0100)]
[monkeydoc] Instantiate both app and library configuration

11 years ago[monkeydoc] s/docDir/docPath/
Jérémie Laval [Mon, 17 Dec 2012 18:53:22 +0000 (19:53 +0100)]
[monkeydoc] s/docDir/docPath/

11 years ago[monkeydoc] Temp API for adding uncompiled sources, should be done differently
Jérémie Laval [Mon, 17 Dec 2012 18:51:58 +0000 (19:51 +0100)]
[monkeydoc] Temp API for adding uncompiled sources, should be done differently

11 years agoRevert "Add an instance_size_inited flag to MonoClass to signal whenever instance_siz...
Zoltan Varga [Mon, 17 Dec 2012 22:16:05 +0000 (23:16 +0100)]
Revert "Add an instance_size_inited flag to MonoClass to signal whenever instance_size has been initialized. The size_inited flag which was used for this purpose cannot be used since it is set earlier for recursion detection. Fixes #8905."

This reverts commit fe4327e65118e60c55699e31fdbbf97233ee66da.

11 years agoAdd an instance_size_inited flag to MonoClass to signal whenever instance_size has...
Zoltan Varga [Mon, 17 Dec 2012 22:09:13 +0000 (23:09 +0100)]
Add an instance_size_inited flag to MonoClass to signal whenever instance_size has been initialized. The size_inited flag which was used for this purpose cannot be used since it is set earlier for recursion detection. Fixes #8905.

11 years agoFix a regression introduced by e14ff38a54e1d890bdf03f155204b7b78b8515d3. Fixes #8904.
Zoltan Varga [Sun, 16 Dec 2012 20:39:19 +0000 (21:39 +0100)]
Fix a regression introduced by e14ff38a54e1d890bdf03f155204b7b78b8515d3. Fixes #8904.

11 years ago[System.IO.Packaging] Disable some failing tests again
Alan McGovern [Sun, 16 Dec 2012 16:39:45 +0000 (16:39 +0000)]
[System.IO.Packaging] Disable some failing tests again

All the failing tests are disabled now.

11 years ago[System.IO.Packaging] Fix incorrect conversion of relative uris to absolute uris
Pablo Ruiz Garcia [Sat, 20 Oct 2012 12:58:49 +0000 (14:58 +0200)]
[System.IO.Packaging] Fix incorrect conversion of relative uris to absolute uris

Fixed loading of PackagePart relationships to avoid (incorrect) conversion of
relative target uris into absolute. (fixes xamarin bug #6602)

11 years agoFix compiler warnings
Marek Safar [Sat, 15 Dec 2012 11:46:40 +0000 (12:46 +0100)]
Fix compiler warnings

11 years agoGenerate CodeSnippetTypeMember with correct separators. Fixes #8927
Marek Safar [Sat, 15 Dec 2012 11:38:43 +0000 (12:38 +0100)]
Generate CodeSnippetTypeMember with correct separators. Fixes #8927

11 years agoWe must locally cache array since it can shrink from the outside and cause FastCopy...
Rodrigo Kumpera [Sat, 15 Dec 2012 02:15:43 +0000 (21:15 -0500)]
We must locally cache array since it can shrink from the outside and cause FastCopy to corrupt the heap.

11 years agoWe can't use UnsageStore in List<> since broken user code that doesn't sync right...
Rodrigo Kumpera [Sat, 15 Dec 2012 02:12:57 +0000 (21:12 -0500)]
We can't use UnsageStore in List<> since broken user code that doesn't sync right will cause heap corruption.

11 years ago[monkeydoc] Add ecma uncompiled source support back and some nice refactoring with it.
Jeremie Laval [Fri, 14 Dec 2012 17:14:06 +0000 (17:14 +0000)]
[monkeydoc] Add ecma uncompiled source support back and some nice refactoring with it.

11 years ago[sgen] Don't allow concurrent M&S with split nursery.
Mark Probst [Fri, 14 Dec 2012 09:51:10 +0000 (10:51 +0100)]
[sgen] Don't allow concurrent M&S with split nursery.

This breaks the sgen-domain-unload test in a very unreproducible way.
This is not very high priority, so I'm disabling the combination for now.

11 years ago[sgen] Fix race conditions in worker thread start/stop.
Mark Probst [Fri, 14 Dec 2012 09:38:53 +0000 (10:38 +0100)]
[sgen] Fix race conditions in worker thread start/stop.

11 years ago[monkeydoc] Reenable index creation for ecma-provider
Jeremie Laval [Thu, 13 Dec 2012 17:18:52 +0000 (17:18 +0000)]
[monkeydoc] Reenable index creation for ecma-provider

11 years ago[monkeydoc] Precache member access per name
Jeremie Laval [Thu, 13 Dec 2012 17:18:27 +0000 (17:18 +0000)]
[monkeydoc] Precache member access per name

11 years ago[monkeydoc] Disable xhtml-provider PopulateIndex as it was doing nothing
Jeremie Laval [Thu, 13 Dec 2012 17:10:54 +0000 (17:10 +0000)]
[monkeydoc] Disable xhtml-provider PopulateIndex as it was doing nothing

11 years agoMerge pull request #523 from metanest/freebsd_libinotify_spike2
Rodrigo Kumpera [Thu, 13 Dec 2012 16:58:22 +0000 (08:58 -0800)]
Merge pull request #523 from metanest/freebsd_libinotify_spike2

inotify lib in FreeBSD is in /usr/local, check is only in FreeBSD

11 years ago[monkeydoc] Configurable caching
Jeremie Laval [Thu, 13 Dec 2012 11:58:59 +0000 (11:58 +0000)]
[monkeydoc] Configurable caching

11 years ago[monkeydoc] Regen monkeydoc.dll.config when the .in changes
Jeremie Laval [Thu, 13 Dec 2012 11:37:07 +0000 (11:37 +0000)]
[monkeydoc] Regen monkeydoc.dll.config when the .in changes

11 years ago[monkeydoc] Sanitize settings
Jeremie Laval [Thu, 13 Dec 2012 11:19:31 +0000 (11:19 +0000)]
[monkeydoc] Sanitize settings

11 years ago[monkeydoc] Bring index and lucene index into the modern age
Jeremie Laval [Wed, 12 Dec 2012 17:10:22 +0000 (17:10 +0000)]
[monkeydoc] Bring index and lucene index into the modern age

11 years ago[monkeydoc] Restore handling of MonoMac/MonoTouch export in Lucene index
Jeremie Laval [Wed, 12 Dec 2012 16:23:04 +0000 (16:23 +0000)]
[monkeydoc] Restore handling of MonoMac/MonoTouch export in Lucene index

11 years ago* inotify lib in FreeBSD is in /usr/local
KISHIMOTO, Makoto [Fri, 7 Dec 2012 02:30:43 +0000 (11:30 +0900)]
* inotify lib in FreeBSD is in /usr/local
* libinotify check only FreeBSD

11 years agoAdd a monotouch Mono.Security source file.
Rodrigo Kumpera [Wed, 12 Dec 2012 23:15:04 +0000 (18:15 -0500)]
Add a monotouch Mono.Security source file.

11 years agoSimple Automake concatenation is not enough to do all the evil things.
Rodrigo Kumpera [Wed, 12 Dec 2012 22:53:45 +0000 (17:53 -0500)]
Simple Automake concatenation is not enough to do all the evil things.

* autogen.sh: Automake does support adding files to the list of program
sources using += but has no -= to remove them. This means that it's
not possible to replace a source file at all.

Given that, the only option is to patch automake. Call an external
script that apply the whole patch queue instead of doing it there.

11 years agoKill this failed attemp at automake configuration extension.
Rodrigo Kumpera [Wed, 12 Dec 2012 22:53:14 +0000 (17:53 -0500)]
Kill this failed attemp at automake configuration extension.

11 years agoAdd 6 sgen configurations with ssb to our test suite.
Rodrigo Kumpera [Wed, 12 Dec 2012 16:16:51 +0000 (11:16 -0500)]
Add 6 sgen configurations with ssb to our test suite.

11 years agoNow this somehow needed fix, resulted in invalid two-lines-joined-into-one-line output...
Atsushi Eno [Wed, 9 May 2012 19:16:06 +0000 (04:16 +0900)]
Now this somehow needed fix, resulted in invalid two-lines-joined-into-one-line output...

11 years agoMatch the existing name for Aes implementation for source/binary compatibility
Sebastien Pouliot [Tue, 3 Apr 2012 12:51:23 +0000 (08:51 -0400)]
Match the existing name for Aes implementation for source/binary compatibility

11 years agoAdjust System.Core and Mono.Security builds to use MonoTouch's CommonCrypto source...
Sebastien Pouliot [Mon, 26 Mar 2012 19:09:32 +0000 (15:09 -0400)]
Adjust System.Core and Mono.Security builds to use MonoTouch's CommonCrypto source files

11 years agoMerge pull request #522 from kosumosu/master
Rodrigo Kumpera [Wed, 12 Dec 2012 16:24:33 +0000 (08:24 -0800)]
Merge pull request #522 from kosumosu/master

Fix for bug #2907 XML "choice" not correclty processed during deserialization

11 years agoBump ikvm module
Marek Safar [Wed, 12 Dec 2012 14:42:44 +0000 (15:42 +0100)]
Bump ikvm module

11 years agoDon't use IteratorStateMachineAttribute it makes us csc incompatible
Marek Safar [Wed, 12 Dec 2012 14:29:32 +0000 (15:29 +0100)]
Don't use IteratorStateMachineAttribute it makes us csc incompatible

11 years agoImport caller attributes from referenced assemblies. Fixes #8829
Marek Safar [Wed, 12 Dec 2012 14:04:53 +0000 (15:04 +0100)]
Import caller attributes from referenced assemblies. Fixes #8829

11 years ago[monkeydoc] Sanitize namespace/path names
Jeremie Laval [Fri, 30 Nov 2012 13:44:15 +0000 (13:44 +0000)]
[monkeydoc] Sanitize namespace/path names

11 years ago[sgen] Try to fix Win32 build.
Mark Probst [Wed, 12 Dec 2012 10:45:24 +0000 (11:45 +0100)]
[sgen] Try to fix Win32 build.

11 years agoFixed Choice ordered read bug #2907
Roman Zavalov [Wed, 12 Dec 2012 08:33:26 +0000 (12:33 +0400)]
Fixed Choice ordered read bug #2907

11 years ago[monkeydoc] Optimize Lucene index creation in ecma-provider by avoiding allocation...
Jérémie Laval [Tue, 11 Dec 2012 22:36:21 +0000 (22:36 +0000)]
[monkeydoc] Optimize Lucene index creation in ecma-provider by avoiding allocation and generic string matching

11 years ago[monkeydoc] Add back Lucene search creation for ecma-provider, switching from manuall...
Jérémie Laval [Tue, 11 Dec 2012 17:19:00 +0000 (18:19 +0100)]
[monkeydoc] Add back Lucene search creation for ecma-provider, switching from manually generated XPath to XLinq.

11 years ago[monkeydoc] Correctly compute internal id
Jérémie Laval [Tue, 11 Dec 2012 17:15:16 +0000 (18:15 +0100)]
[monkeydoc] Correctly compute internal id

11 years ago[monkeydoc] Correctly append kind caption to types
Jérémie Laval [Tue, 11 Dec 2012 17:13:42 +0000 (18:13 +0100)]
[monkeydoc] Correctly append kind caption to types

11 years ago[monkeydoc] Set things right
Jérémie Laval [Tue, 11 Dec 2012 17:13:12 +0000 (18:13 +0100)]
[monkeydoc] Set things right

11 years ago[monkeydoc] Use HelpSource's name to compute the cache key
Jérémie Laval [Tue, 11 Dec 2012 17:12:02 +0000 (18:12 +0100)]
[monkeydoc] Use HelpSource's name to compute the cache key

11 years ago[doc] Disable mono-tracing as an documented API in TOC as it's not generated anymore.
Jérémie Laval [Tue, 11 Dec 2012 12:27:02 +0000 (13:27 +0100)]
[doc] Disable mono-tracing as an documented API in TOC as it's not generated anymore.

11 years agoRevert "Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatti...
Rodrigo Kumpera [Tue, 11 Dec 2012 20:42:12 +0000 (15:42 -0500)]
Revert "Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes"

This reverts commit 8bb9b4409d3f73fdf5ec2afc3b9add6bd33f712f, reversing
changes made to a5dd9d6910896c4d38e1b7d956f1124ab744bc67.

11 years agoFix reactive.pc file name in rpm spec.
Atsushi Eno [Tue, 11 Dec 2012 19:03:23 +0000 (04:03 +0900)]
Fix reactive.pc file name in rpm spec.

11 years agoAutomake can't handle missing conditional includes. Shell script our way out.
Rodrigo Kumpera [Tue, 11 Dec 2012 17:04:01 +0000 (12:04 -0500)]
Automake can't handle missing conditional includes. Shell script our way out.

* autogen.sh: The extension module conditional include can't be done from automake
given this wonderful piece of engineering can't handle missing conditional includes
in any sane way. So what we do is to include them at autogen.sh time.

* Makefile.am.in: This puppy now needs to be pre-processed before all the automake
shinning glory kicks in.

11 years ago[sgen] Fix SGen tests.
Mark Probst [Tue, 11 Dec 2012 17:27:47 +0000 (18:27 +0100)]
[sgen] Fix SGen tests.

Concurrent sweep is gone, and concurrent M&S is in.

11 years ago[build] Update Lucene.net submodule to use mono org URL
Jérémie Laval [Tue, 11 Dec 2012 12:06:19 +0000 (13:06 +0100)]
[build] Update Lucene.net submodule to use mono org URL

11 years agooops, forgot to bring reactive.pc back after some attempts to fix master build.
Atsushi Eno [Tue, 11 Dec 2012 08:31:00 +0000 (17:31 +0900)]
oops, forgot to bring reactive.pc back after some attempts to fix master build.

11 years agoMerge pull request #519 from Youscribe/execution_context_call
Marek Safar [Tue, 11 Dec 2012 08:28:25 +0000 (00:28 -0800)]
Merge pull request #519 from Youscribe/execution_context_call

add LogicalCallContext to ExecutionContext

11 years agoMerge pull request #521 from DavidS/stub-ServiceInstaller-4-0
Marek Safar [Tue, 11 Dec 2012 08:03:43 +0000 (00:03 -0800)]
Merge pull request #521 from DavidS/stub-ServiceInstaller-4-0

ServiceInstaller: add DelayedAutoStart property for NET_4_0

11 years agofix build so far.
Atsushi Eno [Tue, 11 Dec 2012 06:46:02 +0000 (15:46 +0900)]
fix build so far.

11 years agoAdd Reactive Extensions as installed libs, take 2 (with fixed rpmspec this time).
Atsushi Eno [Tue, 11 Dec 2012 06:34:19 +0000 (15:34 +0900)]
Add Reactive Extensions as installed libs, take 2 (with fixed rpmspec this time).

11 years agoServiceInstaller: add DelayedAutoStart property for NET_4_0
David Schmitt [Tue, 11 Dec 2012 06:28:39 +0000 (07:28 +0100)]
ServiceInstaller: add DelayedAutoStart property for NET_4_0

11 years agoIntroduce hooks for parallel build scripts.
Rodrigo Kumpera [Mon, 10 Dec 2012 22:15:16 +0000 (17:15 -0500)]
Introduce hooks for parallel build scripts.

* configure.in: Add new configure option that allows a parallel set of
build scripts to contribute to the current one.

* mono/mini/Makefile.am: Include the parallel build scripts when generating
Makefiles.

* mcs/build/gensources.sh:
* mcs/build/library.make: Probe for parallel source lists when building the
class libs.

11 years agoIntroduce support for unlimited trampolines.
Paolo Molaro [Wed, 14 Nov 2012 14:03:41 +0000 (15:03 +0100)]
Introduce support for unlimited trampolines.

With this new code there is no longer an AOT compiler limit on the number of
trampolines, as they are allocated at runtime as necessary on iOS systems.
We use iOS's ability to remap a page to a different address in memory
and we replicate the trampolines we generate in the binary file to a
location in memory near a writable page where the trampolines can find the
specific runtime data needed (basically building writable constant pools).
On a big app like bcltests, this saves more than 900KB of binary size.
There is still the option to use the old code, by passing the "nopagetrampolines"
option tp the AOT compiler (the new code is the default).

11 years agoSimplify a bit FULL_AOT_RUNTIME build wrt use of CommonCrypto. Ref: assistly #9858
Sebastien Pouliot [Tue, 17 Apr 2012 14:17:59 +0000 (10:17 -0400)]
Simplify a bit FULL_AOT_RUNTIME build wrt use of CommonCrypto. Ref: assistly #9858

11 years agofix code according to mono coding guidelines
Yann ROBIN [Mon, 10 Dec 2012 21:37:38 +0000 (22:37 +0100)]
fix code according to mono coding guidelines

11 years agofix code according to mono coding guidelines
Yann ROBIN [Mon, 10 Dec 2012 19:55:14 +0000 (20:55 +0100)]
fix code according to mono coding guidelines

11 years ago[sgen] Build fix.
Mark Probst [Mon, 10 Dec 2012 17:50:58 +0000 (18:50 +0100)]
[sgen] Build fix.