revert my 2 last commits
authorRadek Doulik <rodo@xamarin.com>
Thu, 16 May 2013 15:27:57 +0000 (17:27 +0200)
committerRadek Doulik <rodo@xamarin.com>
Thu, 16 May 2013 15:29:26 +0000 (17:29 +0200)
        Revert "add System.Net.Http.Formatting to monodroid build"
        Revert "added System.Configuration and System.Security to monodroid build to fix it"

        This reverts commit 85cb9e31763e14f55ab60554a68e8f8b899dd6a3 and
                     commit 6566273367f79b1f928a921cddfe05db4d622e1e.

mcs/class/Makefile
mcs/class/System.XML/mobile_System.Xml.dll.sources
mcs/class/System/monodroid_System.dll.sources
mcs/class/corlib/System.IO/File.cs

index b7d390996869e7f1553b34e0b5a69516cf96e69c..45f99f40ab1ce73841b1abd9c5ea36ffc0e43512 100644 (file)
@@ -158,10 +158,7 @@ monodroid_dirs := \
        Mono.CompilerServices.SymbolWriter      \
        Mono.CSharp     \
        Microsoft.CSharp \
-       System.Security                 \
-       System.Configuration            \
-       System.Net.Http \
-       System.Net.Http.Formatting
+       System.Net.Http
 
 monotouch_runtime_dirs := \
        corlib \
index 377813f97ca53c673608ab22f76c7b58069db14f..458410154b693dcf3511bf452c81d30bc8a1df51 100644 (file)
@@ -161,7 +161,6 @@ System.Xml/XmlWriterSettings.cs
 System.Xml/XmlTextWriter2.cs
 System.Xml/XmlInputStream.cs
 System.Xml/XmlParserInput.cs
-System.Xml/XmlSecureResolver.cs
 System.Xml.XPath/IXPathNavigable.cs
 System.Xml.XPath/XPathNavigator.cs
 System.Xml.XPath/XPathExpression.cs
index 71133497472bc0b191689381cdc88f96ea0e6eaa..019f8681bd186d69f849f06af8941bfd50f989af 100644 (file)
@@ -1,5 +1,3 @@
 #include mobile_System.dll.sources
 System/AndroidPlatform.cs
 System.CodeDom.Compiler/IndentedTextWriter.cs
-System.Configuration/ConfigurationException.cs
-System.Configuration/IConfigurationSectionHandler.cs
index c4ed76b34bfb513728eed443ef12e521b1e1dc03..79486b165a8811a7a805b50327187b4ce4cda215 100644 (file)
@@ -124,15 +124,14 @@ namespace System.IO
                                FileShare.None, bufferSize);
                }
 
+#if !NET_2_1
                [MonoLimitation ("FileOptions are ignored")]
                public static FileStream Create (string path, int bufferSize,
                                                 FileOptions options)
                {
-                       return new FileStream (path, FileMode.Create, FileAccess.ReadWrite,
-                               FileShare.None, bufferSize, options);
+                       return Create (path, bufferSize, options, null);
                }
                
-#if !NET_2_1
                [MonoLimitation ("FileOptions and FileSecurity are ignored")]
                public static FileStream Create (string path, int bufferSize,
                                                 FileOptions options,