Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2018-05-21[corefx] Build System.Native (#8051)Ludovic Henry
2018-03-23Imports FtpWebRequest from CoreFX (#7644)Egor Bogatov
Contributes to #7682 Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=12850 FtpWebRequest used to work incorrectly with sub directories. Let's say we have a following FTP structure ``` myserver ├── file1 └── subdir └── file2 └── file3 ``` Old behavior: ### 1) For `ftp://myserver/subdir/` printed: ``` file2 file3 ``` Expected: ``` file2 file3 ``` ### 2) For `ftp://myserver/subdir` printed: ``` file1 subdir ``` Expected: ``` subdir/file2 subdir/file3 ``` ### 3) For `ftp://myserver/subdir/file2` printed: ``` file2 file3 ``` Expected: ``` file2 ``` With the fix in this PR it works as expected (matches netfx and netcore behaviors).
2018-02-28Revert "Revert "[System.IO] Integrate FileSystemWatchers from CoreFX The ↵Alexander Köplinger
FSEvent CoreFX watcher becomes the new default for MacOS."" This reverts commit 2174a521a3e45f6ce4db967a53edcc1ee2dd0433.
2018-02-28Revert "[System.IO] Integrate FileSystemWatchers from CoreFX The FSEvent ↵Marek Safar
CoreFX watcher becomes the new default for MacOS." This reverts commit f5b10f34a98bdbbdc0cb086a9240d5a7795ab7c0.
2018-02-28[System.IO] Integrate FileSystemWatchers from CoreFXAlexis Christoforides
The FSEvent CoreFX watcher becomes the new default for MacOS.
2017-11-23Remove CodeDomConfigurationHandler from machine.config (#6070)Egor Bogatov
2017-11-17[lldb] update interp main loop function nameBernhard Urban
2017-10-11[lldb] update expression in scriptBernhard Urban
2017-03-18[lldb] update `monobt` so it understands interpreter frames.Bernhard Urban
``` (lldb) monobt * thread #1 * frame #0: 0x00000001001b236e mono-sgen`interp_transform_call(td=0x00007fff5fbfd080, method=0x0000000100915a90, target_method=0x0000000000000000, domain=0x000000010090b741 frame #1: 0x00000001001a1c2e mono-sgen`generate(method=0x0000000100915a90, rtm=0x000000010382ac70, is_bb_start="\x01", generic_context=0x0000000100915ad0) + 9454 at tran8 transforming TestMonoAsyncGenerics::AsyncWithAwait || frame #2: 0x000000010019f553 mono-sgen`mono_interp_transform_method(runtime_method=0x000000010382ac70, context=0x004 TestMonoAsyncGenerics::AsyncWithAwait @ 0 || frame #3: 0x000000010018a178 mono-sgen`ves_exec_method_with_context(frame=0x00007fff5fbfe290, context=0x00007fff5fbfe3a8) +9 TestMonoAsyncGenerics::Main @ 12 "pop" || frame #4: 0x000000010018b4b1 mono-sgen`ves_exec_method_with_context(frame=0x00007fff5fbfe420, context=0x00007fff5fbfe3a8) + 5081 frame #5: 0x0000000100189e43 mono-sgen`mono_interp_runtime_invoke(method=0x000000010090ce38, obj=0x0000000000000000, params=0x00007fff5fbfea40, exc=0x0000000000000000, e0 frame #6: 0x00000001000164a2 mono-sgen`mono_jit_runtime_invoke(method=0x000000010090ce38, obj=0x0000000000000000, params=0x00007fff5fbfea40, exc=0x0000000000000000, erro1 frame #7: 0x000000010038b2b5 mono-sgen`do_runtime_invoke(method=0x000000010090ce38, obj=0x0000000000000000, params=0x00007fff5fbfea40, exc=0x0000000000000000, error=0x002 frame #8: 0x0000000100384e97 mono-sgen`mono_runtime_invoke_checked(method=0x000000010090ce38, obj=0x0000000000000000, params=0x00007fff5fbfea40, error=0x00007fff5fbfeb000 frame #9: 0x000000010038f335 mono-sgen`do_exec_main_checked(method=0x000000010090ce38, args=0x00000001020003c8, error=0x00007fff5fbfeb00) + 197 at object.c:4672 frame #10: 0x000000010038dd5c mono-sgen`mono_runtime_exec_main_checked(method=0x000000010090ce38, args=0x00000001020003c8, error=0x00007fff5fbfeb00) + 76 at object.c:4773 frame #11: 0x000000010038ddbf mono-sgen`mono_runtime_run_main_checked(method=0x000000010090ce38, argc=1, argv=0x00007fff5fbfef68, error=0x00007fff5fbfeb00) + 79 at objec2 frame #12: 0x00000001000d9a33 mono-sgen`mono_jit_exec(domain=0x000000010090b740, assembly=0x0000000100913610, argc=1, argv=0x00007fff5fbfef68) + 403 at driver.c:1029 frame #13: 0x00000001000dd9da mono-sgen`main_thread_handler(user_data=0x00007fff5fbfeea0) + 538 at driver.c:1098 frame #14: 0x00000001000dc21c mono-sgen`mono_main(argc=3, argv=0x00007fff5fbfef58) + 8636 at driver.c:2163 frame #15: 0x0000000100001b9e mono-sgen`mono_main_with_options(argc=3, argv=0x00007fff5fbfef58) + 46 at main.c:45 frame #16: 0x00000001000012dd mono-sgen`main(argc=3, argv=0x00007fff5fbfef58) + 77 at main.c:338 frame #17: 0x00007fffc2e66255 libdyld.dylib`start + 1 frame #18: 0x00007fffc2e66255 libdyld.dylib`start + 1 ```
2017-03-02Find more libraries via dllmap (#4451)Nikolay Amiantov
This allows centralized configuration of library paths. For instance, previously setting path to libgtk-x11-2.0 won't make all parts of Mono use provided library.
2017-02-21correct spelling mistakes (#4405)Edward Betts
2016-12-04A few pretty print fixes for the GDB plugin. (#4001)vkargov
2016-11-15Remove global ipv6 disabled setting. Fixes #35536Marek Safar
2016-10-22[btls] Convert BTLS icalls to pinvokes by invoking them using [DllImp… (#3799)Zoltan Varga
* [btls] Convert BTLS icalls to pinvokes by invoking them using [DllImport("__Internal")], which will make it easier to redirect them to a separate dylib in the future. * [btls] Add a --enable-dynamic-btls configure flag to enable compiling btls into a separate shared library instead of embedding it into the runtime.
2016-01-29Remove ChangeLog references from Makefile and .gitattributeAlexander Köplinger
2016-01-29Remove ChangeLog files from the repoAlexander Köplinger
They weren't updated in the last 6 years and aren't helpful anymore (e.g. by causing unrelated matches during git grep searches).
2016-01-08Fix the format statements in mono-gdb.Vladimir Kargov
2015-12-08Update Makefile.am with monobt scriptJoão Matos
2015-12-07Added the monobt LLDB plugin to the repository.Joao Matos
2015-07-24mono: Use the relocated directory for finding support libraries in data/configBernhard Urban
2015-07-21[lock-tracer] Small improvements to the decoder.Rodrigo Kumpera
2015-07-20[lock-decoder] Update it to include the threads lock.Rodrigo Kumpera
2015-07-07Bump nunit from mono/2.0 to mono/4.5.Richard Tollerton
2015-04-29[sgen] Move DTrace support to Mono-specific code.Mark Probst
We use client callbacks from the binary protocol functions. There are some DTrace probes which we don't have binary protocol entries for. Since DTrace isn't properly supported anyway (and doesn't even work as it should on OSX), we just remove those probes instead of making new binary protocol entries.
2015-04-24Add system.runtime.serialization config, makes several tests pass.Atsushi Eno
2015-04-14Corrected mono-gdb.py use of "\u%X".format (val)James
This line of code would cause an error to pop up in gdb when starting.
2015-02-24import System.Diagnostics.Trace etc. from referencesource.Atsushi Eno
2015-01-29[lldb] Document and install the mono.py file for LLDBMiguel de Icaza
2015-01-23[runtime] Add a preliminary mono support mode for lldb. Currently, pretty ↵Zoltan Varga
printing some runtime types is supported.
2015-01-03[runtime] Fix the LOCK_TRACER build.Zoltan Varga
2014-12-04Remove 4.0 profileMarek Safar
2014-10-24[runtime] Remove build system support for the interpreter.Zoltan Varga
2014-09-12Merge pull request #1275 from ranma42/fix-lib64Zoltan Varga
Fix build with lib64 folder for arch-specific libraries
2014-09-11Do not hardcode lib pathAndrea Canciani
The changes from 3408b8e5f194774e529e223173d68a1a8f880ea5 cause regressions in distros which do not use lib as folder for arch-specific libraries, like Fedora x86_64. Instead, reloc_libdir should be used (as in data/mono.pc.in). This change is released under the MIT/X11 license.
2014-09-01[runtime] Remove the interpreter.Rodrigo Kumpera
2014-07-01Improve libgdiplus path handlingAndrea Canciani
Since libgdiplus is not installed together with Mono, it should not be assumed to be in the same prefix. The new policy for the --with-libgdiplus configure option is the following: - --with-libgdiplus=/absolute/path/to/libgdiplus.{so,dylib} both during build/check and after installation Mono will try to use the specified libgdiplus library; the rationale is that when an absolute path is given, it can be assumed to be the full path to the library that is already installed (possibly in a non-default path). - default, --with-libgdiplus=no, --with-libgdiplus=installed both during build/check and after installation Mono will try to use a system-wide libgdiplus library, that is assumed to reside in the paths that are automatically searched by the dynamic linker; the library is supposed to be already installed in the default path and to be useable both during the build and afterwards. - --with-libgdiplus=sibling, --with-libgdiplus=yes during build/check Mono will try to use the libgdiplus library that is assumed to be in the sibling folder (../libgdiplus), but after the installation it will try to use a system-wide libgdiplus library, that should be in the paths that are automatically searched by the dynamic linker; the assumption is that the library is not yet installed, but it will go to the default prefix after installing it. - --with-libgdiplus=../some/relative/path/to/libgdiplus.{so,dylib,la} during build/check Mono will try to use the specified libgdiplus library, but after the installation it will try to use a system-wide libgdiplus library, that should be in the paths that are automatically searched by the dynamic linker; the assumption is that the library is not yet installed, but it will go to the default prefix after installing it.
2014-07-01Use Mono prefix for libMonoPosixHelperAndrea Canciani
The libMonoPosixHelper is installed together with Mono, hence its path in the configuration should be relative to the Mono prefix. It was previously assumed to reside in a system path, so the the dynamic linker would find it anyway. This patch is based on the one included in bug #18555 (by Gaëtan Lehmann <gaetan.lehmann@gmail.com>), but it also updates runtime/Makefile.am to keep runtime/etc/mono/config consistent. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=18555
2014-06-18Added dllmap for libgtk-x11 and libgdk-x11Alexander Köplinger
Commit licensed under MIT/X11.
2014-05-20Add a missing assembly name to full type specification.Marek Habersack
Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=19839
2014-05-16Merge pull request #943 from ermshiperete/bug-novell-325669Miguel de Icaza
[MWF] Implement multi-display support on Linux (Fixes #325669)
2014-05-16[MWF] Implement multi-display support on Linux (Fixes #325669)Eberhard Beilharz
The number of displays and sizes can be retrieved with the help of libXinerama. The implementation was done in a way that is backwards compatible, so on non-Linux systems or when libXinerama is not available the behavior will be the same as before. Also fixed the implementation of FormStartPosition.CenterScreen to bring up the form centered on the current display (with the current display being either the screen the top left corner of the owner form is on, or if there is no owner the screen that has the mouse pointer). This fixes Novell bug #325669 on Linux (https://bugzilla.novell.com/show_bug.cgi?id=325669).
2014-05-15[Mono.Web] Further steps to kill Mono.web, this time the pkg-config filesMiguel de Icaza
2014-05-09Remove last traces of Mono.WebMarek Habersack
2014-04-17Add System.Xml.Linq to the dotnet.pkgMiguel de Icaza
2014-04-16Make all Python scripts Python 3-friendly.Alex Rønne Petersen
2014-01-23Merge pull request #735 from wtfrank/bitbltAlex Rønne Petersen
dllmap for BitBlt in gdi32.dll
2014-01-08[xbuild] Add pkgconfig file for xbuild 12Michael Hutchinson
2014-01-03Merge pull request #822 from carlosmn/asp-pcMichael Hutchinson
Use full path for aspnetwebstack pkg-config file
2013-12-06gdi32.dll redirection apply to non-windows onlyFrancis Fisher
2013-12-06dllmap for BitBlt in gdi32.dllFrancis Fisher