From 82da664f86db7ca6c5c0f292d18c7bdc29d74eea Mon Sep 17 00:00:00 2001 From: "Xamarin Public Jenkins (auto-signing)" Date: Thu, 18 Apr 2019 08:43:48 +0000 Subject: [PATCH] Imported Upstream version 6.0.0.183 Former-commit-id: 52d866fe5c7f8a1e61b372993391b8bfdfac2bd0 --- configure.REMOVED.git-id | 2 +- configure.ac.REMOVED.git-id | 2 +- .../src/System/IO/FileSystem.Unix.cs | 113 ++++++++++-------- mcs/build/common/Consts.cs | 2 +- ...et_4_x_Mono.Runtime.Tests_test.dll.sources | 1 - mcs/class/Mono.Runtime.Tests/Makefile | 6 +- ...ono.Runtime.Tests_test.dll.exclude.sources | 1 + .../System.Windows.Forms/TreeNode.cs | 7 +- mcs/class/corlib/Test/System.IO/FileTest.cs | 4 +- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Core.dll.REMOVED.git-id | 2 +- .../System.IO.Compression.dll | Bin 99328 -> 99328 bytes .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Xml.dll.REMOVED.git-id | 2 +- .../mcs.exe.REMOVED.git-id | 2 +- .../mscorlib.dll.REMOVED.git-id | 2 +- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Core.dll.REMOVED.git-id | 2 +- .../System.IO.Compression.dll | Bin 99328 -> 99328 bytes .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Xml.dll.REMOVED.git-id | 2 +- .../mcs.exe.REMOVED.git-id | 2 +- .../mscorlib.dll.REMOVED.git-id | 2 +- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Core.dll.REMOVED.git-id | 2 +- .../System.IO.Compression.dll | Bin 99328 -> 99328 bytes .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Xml.dll.REMOVED.git-id | 2 +- .../mcs.exe.REMOVED.git-id | 2 +- .../mscorlib.dll.REMOVED.git-id | 2 +- .../Mono.Security.dll.REMOVED.git-id | 2 +- .../System.Configuration.dll.REMOVED.git-id | 2 +- .../System.Core.dll.REMOVED.git-id | 2 +- .../System.IO.Compression.dll | Bin 99328 -> 99328 bytes .../System.Numerics.dll.REMOVED.git-id | 2 +- .../System.Xml.dll.REMOVED.git-id | 2 +- .../mcs.exe.REMOVED.git-id | 2 +- .../mscorlib.dll.REMOVED.git-id | 2 +- mono/mini/aot-compiler.c.REMOVED.git-id | 2 +- mono/mini/aot-runtime.c.REMOVED.git-id | 2 +- mono/mini/exceptions-arm.c | 1 + mono/mini/method-to-ir.c.REMOVED.git-id | 2 +- mono/mini/version.h | 2 +- mono/unit-tests/Makefile.in | 4 +- msvc/Makefile.in | 2 +- po/mcs/de.gmo | Bin 5406 -> 5406 bytes po/mcs/de.po.REMOVED.git-id | 2 +- po/mcs/es.gmo | Bin 16329 -> 16329 bytes po/mcs/es.po.REMOVED.git-id | 2 +- po/mcs/ja.gmo | Bin 20863 -> 20863 bytes po/mcs/ja.po.REMOVED.git-id | 2 +- po/mcs/mcs.pot | 4 +- po/mcs/pt_BR.gmo | Bin 72806 -> 72806 bytes po/mcs/pt_BR.po.REMOVED.git-id | 2 +- 57 files changed, 115 insertions(+), 106 deletions(-) create mode 100644 mcs/class/Mono.Runtime.Tests/Mono.Runtime.Tests_test.dll.exclude.sources diff --git a/configure.REMOVED.git-id b/configure.REMOVED.git-id index 07c07142c5..e548a69f40 100644 --- a/configure.REMOVED.git-id +++ b/configure.REMOVED.git-id @@ -1 +1 @@ -72075fe503f90a8c9087954fd13cae555b0fd10e \ No newline at end of file +a33544e2256923c827809cd431f436b0559a226e \ No newline at end of file diff --git a/configure.ac.REMOVED.git-id b/configure.ac.REMOVED.git-id index 03f2c3facf..412d9d10ef 100644 --- a/configure.ac.REMOVED.git-id +++ b/configure.ac.REMOVED.git-id @@ -1 +1 @@ -5cf967df968a4cd55c0acb463f01a9a4b019cee0 \ No newline at end of file +fca4cfccc556dbb274d1a351bbe332106a661be0 \ No newline at end of file diff --git a/external/corefx/src/System.IO.FileSystem/src/System/IO/FileSystem.Unix.cs b/external/corefx/src/System.IO.FileSystem/src/System/IO/FileSystem.Unix.cs index ea46a32c77..daddcedb3d 100644 --- a/external/corefx/src/System.IO.FileSystem/src/System/IO/FileSystem.Unix.cs +++ b/external/corefx/src/System.IO.FileSystem/src/System/IO/FileSystem.Unix.cs @@ -29,6 +29,64 @@ namespace System.IO } } + private static void LinkOrCopyFile (string sourceFullPath, string destFullPath) + { + if (Interop.Sys.Link(sourceFullPath, destFullPath) >= 0) + return; + + // If link fails, we can fall back to doing a full copy, but we'll only do so for + // cases where we expect link could fail but such a copy could succeed. We don't + // want to do so for all errors, because the copy could incur a lot of cost + // even if we know it'll eventually fail, e.g. EROFS means that the source file + // system is read-only and couldn't support the link being added, but if it's + // read-only, then the move should fail any way due to an inability to delete + // the source file. + Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo(); + if (errorInfo.Error == Interop.Error.EXDEV || // rename fails across devices / mount points + errorInfo.Error == Interop.Error.EACCES || + errorInfo.Error == Interop.Error.EPERM || // permissions might not allow creating hard links even if a copy would work + errorInfo.Error == Interop.Error.EOPNOTSUPP || // links aren't supported by the source file system + errorInfo.Error == Interop.Error.EMLINK || // too many hard links to the source file + errorInfo.Error == Interop.Error.ENOSYS) // the file system doesn't support link + { + CopyFile(sourceFullPath, destFullPath, overwrite: false); + } + else + { + // The operation failed. Within reason, try to determine which path caused the problem + // so we can throw a detailed exception. + string path = null; + bool isDirectory = false; + if (errorInfo.Error == Interop.Error.ENOENT) + { + if (!Directory.Exists(Path.GetDirectoryName(destFullPath))) + { + // The parent directory of destFile can't be found. + // Windows distinguishes between whether the directory or the file isn't found, + // and throws a different exception in these cases. We attempt to approximate that + // here; there is a race condition here, where something could change between + // when the error occurs and our checks, but it's the best we can do, and the + // worst case in such a race condition (which could occur if the file system is + // being manipulated concurrently with these checks) is that we throw a + // FileNotFoundException instead of DirectoryNotFoundexception. + path = destFullPath; + isDirectory = true; + } + else + { + path = sourceFullPath; + } + } + else if (errorInfo.Error == Interop.Error.EEXIST) + { + path = destFullPath; + } + + throw Interop.GetExceptionForIoErrno(errorInfo, path, isDirectory); + } + } + + public static void ReplaceFile(string sourceFullPath, string destFullPath, string destBackupFullPath, bool ignoreMetadataErrors) { if (destBackupFullPath != null) @@ -46,7 +104,7 @@ namespace System.IO // Now that the backup is gone, link the backup to point to the same file as destination. // This way, we don't lose any data in the destination file, no copy is necessary, etc. - Interop.CheckIo(Interop.Sys.Link(destFullPath, destBackupFullPath), destFullPath); + LinkOrCopyFile(destFullPath, destBackupFullPath); } else { @@ -88,58 +146,7 @@ namespace System.IO return; } - if (Interop.Sys.Link(sourceFullPath, destFullPath) < 0) - { - // If link fails, we can fall back to doing a full copy, but we'll only do so for - // cases where we expect link could fail but such a copy could succeed. We don't - // want to do so for all errors, because the copy could incur a lot of cost - // even if we know it'll eventually fail, e.g. EROFS means that the source file - // system is read-only and couldn't support the link being added, but if it's - // read-only, then the move should fail any way due to an inability to delete - // the source file. - Interop.ErrorInfo errorInfo = Interop.Sys.GetLastErrorInfo(); - if (errorInfo.Error == Interop.Error.EXDEV || // rename fails across devices / mount points - errorInfo.Error == Interop.Error.EPERM || // permissions might not allow creating hard links even if a copy would work - errorInfo.Error == Interop.Error.EOPNOTSUPP || // links aren't supported by the source file system - errorInfo.Error == Interop.Error.EMLINK || // too many hard links to the source file - errorInfo.Error == Interop.Error.ENOSYS) // the file system doesn't support link - { - CopyFile(sourceFullPath, destFullPath, overwrite: false); - } - else - { - // The operation failed. Within reason, try to determine which path caused the problem - // so we can throw a detailed exception. - string path = null; - bool isDirectory = false; - if (errorInfo.Error == Interop.Error.ENOENT) - { - if (!Directory.Exists(Path.GetDirectoryName(destFullPath))) - { - // The parent directory of destFile can't be found. - // Windows distinguishes between whether the directory or the file isn't found, - // and throws a different exception in these cases. We attempt to approximate that - // here; there is a race condition here, where something could change between - // when the error occurs and our checks, but it's the best we can do, and the - // worst case in such a race condition (which could occur if the file system is - // being manipulated concurrently with these checks) is that we throw a - // FileNotFoundException instead of DirectoryNotFoundexception. - path = destFullPath; - isDirectory = true; - } - else - { - path = sourceFullPath; - } - } - else if (errorInfo.Error == Interop.Error.EEXIST) - { - path = destFullPath; - } - - throw Interop.GetExceptionForIoErrno(errorInfo, path, isDirectory); - } - } + LinkOrCopyFile(sourceFullPath, destFullPath); DeleteFile(sourceFullPath); } diff --git a/mcs/build/common/Consts.cs b/mcs/build/common/Consts.cs index d18617b13a..daca1c669f 100644 --- a/mcs/build/common/Consts.cs +++ b/mcs/build/common/Consts.cs @@ -41,7 +41,7 @@ static partial class Consts // Use these assembly version constants to make code more maintainable. // - public const string MonoVersion = "6.0.0.176"; + public const string MonoVersion = "6.0.0.183"; public const string MonoCompany = "Mono development team"; public const string MonoProduct = "Mono Common Language Infrastructure"; public const string MonoCopyright = "(c) Various Mono authors"; diff --git a/mcs/build/deps/linux_net_4_x_Mono.Runtime.Tests_test.dll.sources b/mcs/build/deps/linux_net_4_x_Mono.Runtime.Tests_test.dll.sources index 3f3343d7b9..aaf4e599f0 100644 --- a/mcs/build/deps/linux_net_4_x_Mono.Runtime.Tests_test.dll.sources +++ b/mcs/build/deps/linux_net_4_x_Mono.Runtime.Tests_test.dll.sources @@ -5,7 +5,6 @@ ../../../mono/mini/basic-float.cs ../../../mono/mini/basic-long.cs ../../../mono/mini/basic-math.cs -../../../mono/mini/basic-simd.cs ../../../mono/mini/basic-vectors.cs ../../../mono/mini/basic.cs ../../../mono/mini/bench.cs diff --git a/mcs/class/Mono.Runtime.Tests/Makefile b/mcs/class/Mono.Runtime.Tests/Makefile index dddaf4a412..1f3a0e1297 100644 --- a/mcs/class/Mono.Runtime.Tests/Makefile +++ b/mcs/class/Mono.Runtime.Tests/Makefile @@ -9,8 +9,12 @@ include ../../build/rules.make LIBRARY = Mono.Runtime.Tests.dll NO_BUILD = 1 NO_INSTALL = 1 -LIB_REFS = System System.Core System.Numerics System.Numerics.Vectors Mono.Simd +LIB_REFS = System System.Core System.Numerics System.Numerics.Vectors TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -unsafe -d:__MOBILE__ -nowarn:CS0169,CS0649,CS0414,CS0618,CS0219,CS0168 +ifneq ($(PROFILE),monodroid) +LIB_REFS += Mono.Simd +endif + include ../../build/library.make diff --git a/mcs/class/Mono.Runtime.Tests/Mono.Runtime.Tests_test.dll.exclude.sources b/mcs/class/Mono.Runtime.Tests/Mono.Runtime.Tests_test.dll.exclude.sources new file mode 100644 index 0000000000..8c9e9370c2 --- /dev/null +++ b/mcs/class/Mono.Runtime.Tests/Mono.Runtime.Tests_test.dll.exclude.sources @@ -0,0 +1 @@ +../../../../mono/mini/basic-simd.cs diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/TreeNode.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/TreeNode.cs index 1d55c35d5f..b16d06349f 100644 --- a/mcs/class/System.Windows.Forms/System.Windows.Forms/TreeNode.cs +++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/TreeNode.cs @@ -1071,7 +1071,7 @@ namespace System.Windows.Forms return TreeView.ImageList.Images.IndexOfKey (selected_image_key); if (!string.IsNullOrEmpty (TreeView.SelectedImageKey)) return TreeView.ImageList.Images.IndexOfKey (TreeView.SelectedImageKey); - if (TreeView.SelectedImageIndex >= 0) + if (selected_image_index == -1 && TreeView.SelectedImageIndex >= 0) return TreeView.SelectedImageIndex; } else { if (image_index >= 0) @@ -1080,12 +1080,9 @@ namespace System.Windows.Forms return TreeView.ImageList.Images.IndexOfKey (image_key); if (!string.IsNullOrEmpty (TreeView.ImageKey)) return TreeView.ImageList.Images.IndexOfKey (TreeView.ImageKey); - if (TreeView.ImageIndex >= 0) + if (image_index == -1 && TreeView.ImageIndex >= 0) return TreeView.ImageIndex; } - - if (TreeView.ImageList.Images.Count > 0) - return 0; return -1; } diff --git a/mcs/class/corlib/Test/System.IO/FileTest.cs b/mcs/class/corlib/Test/System.IO/FileTest.cs index 4840f6ba79..7ed89fef46 100644 --- a/mcs/class/corlib/Test/System.IO/FileTest.cs +++ b/mcs/class/corlib/Test/System.IO/FileTest.cs @@ -923,7 +923,7 @@ namespace MonoTests.System.IO } Assert.IsTrue (File.Exists (bar), "#1"); - File.Move (bar, baz); + Assert.DoesNotThrow (() => File.Move (bar, baz), "#5"); Assert.IsFalse (File.Exists (bar), "#2"); Assert.IsTrue (File.Exists (baz), "#3"); @@ -939,7 +939,7 @@ namespace MonoTests.System.IO Directory.CreateDirectory (dir); Directory.CreateDirectory (dir2); File.Create (dir_foo).Close (); - File.Move (dir_foo, dir2_foo); + Assert.DoesNotThrow (() => File.Move (dir_foo, dir2_foo), "#6"); Assert.IsTrue (File.Exists (dir2_foo), "#4"); Directory.Delete (dir, true); diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id index 4135a0cb00..902f25bcd5 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -3bb5075309cfee79947231190b6c06970814ecbf \ No newline at end of file +812e72bb33c83991369be9f9ec7ceb56d725d4ba \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id index 6466c305cb..2526c7b7c1 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -4eff81e78b9af7cda22830830d3d49092a6b7018 \ No newline at end of file +abbfbea3a51f4a664ba8db3d9464ad05a3e55baf \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id index e7338d7154..fbc1d56476 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -3b0cda7b19ee016a6f2b3ad97ef9a6ddd8b9bbe5 \ No newline at end of file +7aadfbf5cf560b7c3b74e842ea934137d259649f \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll index 3349e664869a6b0d644d9888ddcf2045b450b137..4c584703e55e4f0362f1d38ec221d07470d597f8 100644 GIT binary patch delta 60 zcmV-C0K@-)hz5X&29SsZ!2XBpfsD0`0W=H{JtQC?X-ua_gPNk-?qPoex6lj$uLcD; S05bq8m!N$CDz~l^0a9@2#TK*x delta 60 zcmV-C0K@-)hz5X&29SsZJi)K+fsD0`0W=H{Lxj7JnJbt~q5qd;ehU`Cx6lj$uLcD- S05$+Bm!N$CDz~l^0a9@E^%o=n diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id index d971464fd3..395dba4ccc 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -167a06dea1a9f639eed2d5ae04afc5c23891d656 \ No newline at end of file +edd9d4c737bb1d7820ff3adb5eb44303676c0579 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id index 123bcc6a47..e5bda3e5a1 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -71b6657d1ec9f6a632e30c9ed789ef7fd6e97b70 \ No newline at end of file +a4050af4872d879b40435b821550b364b53a0c5e \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id index 9026f8c0b2..846560237e 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -81c98bb54997edda2c51abc2c020a02ef58bcb65 \ No newline at end of file +78cc979f44705424bfcf8a9065b8f1ea0c06a407 \ No newline at end of file diff --git a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id index fcd657b321..c1ee14da4f 100644 --- a/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-linux/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -02e92c8371781b6e97eef8cd9fff063521233353 \ No newline at end of file +10a0ef69f7a743c313c308618241d53fbf0867c8 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id index 4135a0cb00..902f25bcd5 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -3bb5075309cfee79947231190b6c06970814ecbf \ No newline at end of file +812e72bb33c83991369be9f9ec7ceb56d725d4ba \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id index 6466c305cb..2526c7b7c1 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -4eff81e78b9af7cda22830830d3d49092a6b7018 \ No newline at end of file +abbfbea3a51f4a664ba8db3d9464ad05a3e55baf \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id index e7338d7154..fbc1d56476 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -3b0cda7b19ee016a6f2b3ad97ef9a6ddd8b9bbe5 \ No newline at end of file +7aadfbf5cf560b7c3b74e842ea934137d259649f \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll index 3349e664869a6b0d644d9888ddcf2045b450b137..4c584703e55e4f0362f1d38ec221d07470d597f8 100644 GIT binary patch delta 60 zcmV-C0K@-)hz5X&29SsZ!2XBpfsD0`0W=H{JtQC?X-ua_gPNk-?qPoex6lj$uLcD; S05bq8m!N$CDz~l^0a9@2#TK*x delta 60 zcmV-C0K@-)hz5X&29SsZJi)K+fsD0`0W=H{Lxj7JnJbt~q5qd;ehU`Cx6lj$uLcD- S05$+Bm!N$CDz~l^0a9@E^%o=n diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id index d971464fd3..395dba4ccc 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -167a06dea1a9f639eed2d5ae04afc5c23891d656 \ No newline at end of file +edd9d4c737bb1d7820ff3adb5eb44303676c0579 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id index 123bcc6a47..e5bda3e5a1 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -71b6657d1ec9f6a632e30c9ed789ef7fd6e97b70 \ No newline at end of file +a4050af4872d879b40435b821550b364b53a0c5e \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id index 9026f8c0b2..846560237e 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -81c98bb54997edda2c51abc2c020a02ef58bcb65 \ No newline at end of file +78cc979f44705424bfcf8a9065b8f1ea0c06a407 \ No newline at end of file diff --git a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id index fcd657b321..c1ee14da4f 100644 --- a/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-macos/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -02e92c8371781b6e97eef8cd9fff063521233353 \ No newline at end of file +10a0ef69f7a743c313c308618241d53fbf0867c8 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id index 4135a0cb00..902f25bcd5 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -3bb5075309cfee79947231190b6c06970814ecbf \ No newline at end of file +812e72bb33c83991369be9f9ec7ceb56d725d4ba \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id index 6466c305cb..2526c7b7c1 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -4eff81e78b9af7cda22830830d3d49092a6b7018 \ No newline at end of file +abbfbea3a51f4a664ba8db3d9464ad05a3e55baf \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id index e7338d7154..fbc1d56476 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -3b0cda7b19ee016a6f2b3ad97ef9a6ddd8b9bbe5 \ No newline at end of file +7aadfbf5cf560b7c3b74e842ea934137d259649f \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll index 3349e664869a6b0d644d9888ddcf2045b450b137..4c584703e55e4f0362f1d38ec221d07470d597f8 100644 GIT binary patch delta 60 zcmV-C0K@-)hz5X&29SsZ!2XBpfsD0`0W=H{JtQC?X-ua_gPNk-?qPoex6lj$uLcD; S05bq8m!N$CDz~l^0a9@2#TK*x delta 60 zcmV-C0K@-)hz5X&29SsZJi)K+fsD0`0W=H{Lxj7JnJbt~q5qd;ehU`Cx6lj$uLcD- S05$+Bm!N$CDz~l^0a9@E^%o=n diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id index d971464fd3..395dba4ccc 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -167a06dea1a9f639eed2d5ae04afc5c23891d656 \ No newline at end of file +edd9d4c737bb1d7820ff3adb5eb44303676c0579 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id index 123bcc6a47..e5bda3e5a1 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -71b6657d1ec9f6a632e30c9ed789ef7fd6e97b70 \ No newline at end of file +a4050af4872d879b40435b821550b364b53a0c5e \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id index 9026f8c0b2..846560237e 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -81c98bb54997edda2c51abc2c020a02ef58bcb65 \ No newline at end of file +78cc979f44705424bfcf8a9065b8f1ea0c06a407 \ No newline at end of file diff --git a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id index fcd657b321..c1ee14da4f 100644 --- a/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-unix/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -02e92c8371781b6e97eef8cd9fff063521233353 \ No newline at end of file +10a0ef69f7a743c313c308618241d53fbf0867c8 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id index 4135a0cb00..902f25bcd5 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/Mono.Security.dll.REMOVED.git-id @@ -1 +1 @@ -3bb5075309cfee79947231190b6c06970814ecbf \ No newline at end of file +812e72bb33c83991369be9f9ec7ceb56d725d4ba \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id index 6466c305cb..2526c7b7c1 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Configuration.dll.REMOVED.git-id @@ -1 +1 @@ -4eff81e78b9af7cda22830830d3d49092a6b7018 \ No newline at end of file +abbfbea3a51f4a664ba8db3d9464ad05a3e55baf \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id index be40159b0a..334353d16d 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Core.dll.REMOVED.git-id @@ -1 +1 @@ -be628dd9444478c2a5afb7a005df151971572827 \ No newline at end of file +44cef98a299aa05e05371a8bf1e8e836ccda4450 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.IO.Compression.dll index 3349e664869a6b0d644d9888ddcf2045b450b137..4c584703e55e4f0362f1d38ec221d07470d597f8 100644 GIT binary patch delta 60 zcmV-C0K@-)hz5X&29SsZ!2XBpfsD0`0W=H{JtQC?X-ua_gPNk-?qPoex6lj$uLcD; S05bq8m!N$CDz~l^0a9@2#TK*x delta 60 zcmV-C0K@-)hz5X&29SsZJi)K+fsD0`0W=H{Lxj7JnJbt~q5qd;ehU`Cx6lj$uLcD- S05$+Bm!N$CDz~l^0a9@E^%o=n diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id index d971464fd3..395dba4ccc 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Numerics.dll.REMOVED.git-id @@ -1 +1 @@ -167a06dea1a9f639eed2d5ae04afc5c23891d656 \ No newline at end of file +edd9d4c737bb1d7820ff3adb5eb44303676c0579 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id index 123bcc6a47..e5bda3e5a1 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/System.Xml.dll.REMOVED.git-id @@ -1 +1 @@ -71b6657d1ec9f6a632e30c9ed789ef7fd6e97b70 \ No newline at end of file +a4050af4872d879b40435b821550b364b53a0c5e \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id index 9026f8c0b2..846560237e 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mcs.exe.REMOVED.git-id @@ -1 +1 @@ -81c98bb54997edda2c51abc2c020a02ef58bcb65 \ No newline at end of file +78cc979f44705424bfcf8a9065b8f1ea0c06a407 \ No newline at end of file diff --git a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id index 349922a353..8d5a63d32a 100644 --- a/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id +++ b/mcs/class/lib/monolite-win32/9032116E-BB4E-4ED5-9C71-9E5E0B0230CA/mscorlib.dll.REMOVED.git-id @@ -1 +1 @@ -21392ca5aa714720fd915319eaf0d6c04eea22fc \ No newline at end of file +90e7a52df974302d087204b725711b2ac31a6e6c \ No newline at end of file diff --git a/mono/mini/aot-compiler.c.REMOVED.git-id b/mono/mini/aot-compiler.c.REMOVED.git-id index e3a80add1b..6d1196de9e 100644 --- a/mono/mini/aot-compiler.c.REMOVED.git-id +++ b/mono/mini/aot-compiler.c.REMOVED.git-id @@ -1 +1 @@ -e6e25d44563d58245ce37d51704b76c6777cc974 \ No newline at end of file +7dd5faf818a0108425a9aa20fa86dc9b77faaaec \ No newline at end of file diff --git a/mono/mini/aot-runtime.c.REMOVED.git-id b/mono/mini/aot-runtime.c.REMOVED.git-id index 082c1331fd..a3859e7dd7 100644 --- a/mono/mini/aot-runtime.c.REMOVED.git-id +++ b/mono/mini/aot-runtime.c.REMOVED.git-id @@ -1 +1 @@ -66cd7b5ed2f6a19db0867491f5fe6dde7f27740c \ No newline at end of file +0abdc895b47a19e554a020a88141e224146e2d43 \ No newline at end of file diff --git a/mono/mini/exceptions-arm.c b/mono/mini/exceptions-arm.c index 269452f092..65b372d195 100644 --- a/mono/mini/exceptions-arm.c +++ b/mono/mini/exceptions-arm.c @@ -252,6 +252,7 @@ get_throw_trampoline (int size, gboolean corlib, gboolean rethrow, gboolean llvm int param_size = 8; if (!resume_unwind && !corlib) param_size += 4; // Extra arg + param_size = ALIGN_TO (param_size, MONO_ARCH_FRAME_ALIGNMENT); ARM_SUB_REG_IMM8 (code, ARMREG_SP, ARMREG_SP, param_size); cfa_offset += param_size; mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, cfa_offset); diff --git a/mono/mini/method-to-ir.c.REMOVED.git-id b/mono/mini/method-to-ir.c.REMOVED.git-id index f3fee6deca..65d442bdc5 100644 --- a/mono/mini/method-to-ir.c.REMOVED.git-id +++ b/mono/mini/method-to-ir.c.REMOVED.git-id @@ -1 +1 @@ -cf9e3c07259eff35dd0817ae62d89a3e068069c3 \ No newline at end of file +85a888f70ae4668d92fa432249750d2629b8862a \ No newline at end of file diff --git a/mono/mini/version.h b/mono/mini/version.h index 9f87930aa4..9fb75864d0 100644 --- a/mono/mini/version.h +++ b/mono/mini/version.h @@ -1 +1 @@ -#define FULL_VERSION "explicit/d75c142" +#define FULL_VERSION "explicit/cf880be" diff --git a/mono/unit-tests/Makefile.in b/mono/unit-tests/Makefile.in index 6330aae0ca..10239928c1 100644 --- a/mono/unit-tests/Makefile.in +++ b/mono/unit-tests/Makefile.in @@ -1430,10 +1430,10 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -@CROSS_COMPILE_TRUE@test-local: -@HOST_WIN32_TRUE@test-local: @CROSS_COMPILE_TRUE@clean-local: @HOST_WIN32_TRUE@clean-local: +@CROSS_COMPILE_TRUE@test-local: +@HOST_WIN32_TRUE@test-local: clean: clean-am clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \ diff --git a/msvc/Makefile.in b/msvc/Makefile.in index ce8ea72c51..b6ebc6a6dc 100644 --- a/msvc/Makefile.in +++ b/msvc/Makefile.in @@ -503,8 +503,8 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -@ENABLE_MSVC_FALSE@install-exec-local: @ENABLE_MSVC_FALSE@clean-local: +@ENABLE_MSVC_FALSE@install-exec-local: clean: clean-am clean-am: clean-generic clean-libtool clean-local mostlyclean-am diff --git a/po/mcs/de.gmo b/po/mcs/de.gmo index d9be6b6e100f9c7ad8fc99191f299ef40431819d..00b93bd88aad101236cb760591b129f599af3b47 100644 GIT binary patch delta 20 bcmbQIHBW29Q!aK31p^B!1Ix{CxQw^}O3Ma+ delta 20 bcmbQIHBW29Q!aL61p^B!1GCL=p_J7FGt9oB7oXv;bi}2N3`O delta 22 dcmeyri1Gg-#tj_m?8XWP7FGskoB7oXv;bi52MGWG diff --git a/po/mcs/ja.po.REMOVED.git-id b/po/mcs/ja.po.REMOVED.git-id index 8ab3ab2844..386d78d040 100644 --- a/po/mcs/ja.po.REMOVED.git-id +++ b/po/mcs/ja.po.REMOVED.git-id @@ -1 +1 @@ -3666efe6a8bfde05515288d200864e987a0362c9 \ No newline at end of file +27278b4f4ff20744d812f2e2d2c3f38c6db1a567 \ No newline at end of file diff --git a/po/mcs/mcs.pot b/po/mcs/mcs.pot index 7003a56f04..203af6f973 100644 --- a/po/mcs/mcs.pot +++ b/po/mcs/mcs.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mono 6.0.0.176\n" +"Project-Id-Version: mono 6.0.0.183\n" "Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n" -"POT-Creation-Date: 2019-04-13 08:06+0000\n" +"POT-Creation-Date: 2019-04-18 08:09+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/mcs/pt_BR.gmo b/po/mcs/pt_BR.gmo index d188ba00f9579d7493b94db7ff196e867c79b022..c606695136a5c604e69410abac19ade00717b947 100644 GIT binary patch delta 22 ecmaF1gXP%{mJM-J*)0?dEUXMHH>XZzYzF{tGzf