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
AgeCommit message (Collapse)Author
2004-06-13* System_test.dll.sources: Added IndentedTextWriterTest to unitGert Driesen
tests svn path=/trunk/mcs/; revision=29458
2004-06-10(LIBRARY_COMPILE): Define only if 'USE_BOOT_COMPILE' isRaja R Harinath
defined. Don't conflate building a non-Xml temporary System.dll with building System.dll for bootstrapping mcs. svn path=/trunk/mcs/; revision=29169
2004-06-09Simplify slightly.Raja R Harinath
svn path=/trunk/mcs/; revision=29101
2004-06-09(HAVE_CYCLIC_DEP_FILE): New. Used to detect ifRaja R Harinath
System.Xml.dll is present. (SECOND_PASS): Remove. svn path=/trunk/mcs/; revision=29097
2004-06-062004-06-05 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System_test.dll.sources: Added X509CertificateCollectionTest to the unit tests. svn path=/trunk/mcs/; revision=28895
2004-06-032004-06-03 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* Makefile : add run-test-ondotnet target support. svn path=/trunk/mcs/; revision=28726
2004-05-24(EXTRA_FLAGS): Remove.Raja R Harinath
(LIBRARY_COMPILE) [!HAVE_SYSTEM_XML]: Use $(BOOT_COMPILE) for non-Xml first build. (all-local) [!SECOND_PASS]: Simplify. svn path=/trunk/mcs/; revision=27950
2004-05-10(install-local,test-local,run-test-local,clean-local):Raja R Harinath
Make cyclic-dependency safe. svn path=/trunk/mcs/; revision=27012
2004-05-07(all-local) [SECOND_PASS]: Rewrite to use 'make' itselfRaja R Harinath
to determine out-of-date-ness. (This fixes an unlogged change.) (install-local,test-local,run-test-local,clean-local): Collapse near-identical rules. svn path=/trunk/mcs/; revision=26891
2004-05-07(all-local): Built first pass with BOOT_COMPILE.Raja R Harinath
svn path=/trunk/mcs/; revision=26875
2004-04-27Put libraries in profile dependant directories so we can build all profiles ↵Jackson Harper
at once. svn path=/trunk/mcs/; revision=26040
2004-04-16 * TypeDescriptorTests.cs: Added new tests for TypeDescriptor.Lluis Sanchez
* System_test.dll.sources: Added System.ComponentModel/TypeDescriptorTests.cs. svn path=/trunk/mcs/; revision=25617
2004-04-14 * System.dll.sources: AddedLluis Sanchez
System.ComponentModel/ReflectionEventDescriptor.cs, System.ComponentModel/ReflectionPropertyDescriptor.cs. svn path=/trunk/mcs/; revision=25474
2004-03-172004-03-17 Ivan Hamilton <ivan@chimerical.com.au>Sebastien Pouliot
* System.dll.sources: Added System/System.ComponentModel.Design /RuntimeLicenseContext.cs * System_test.dll.sources : Added System.ComponentModel /LicenseManagerTests.cs svn path=/trunk/mcs/; revision=24219
2004-03-112004-03-11 Zoltan Varga <vargaz@freemail.hu>Zoltan Varga
* Makefile (all-local): Fix for non-bash shells. svn path=/trunk/mcs/; revision=23916
2004-02-262004-02-26 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.dll.sources: Added System.Net/DefaultCertificatePolicy.cs to the build. svn path=/trunk/mcs/; revision=23494
2004-02-042004-02-04 Marek Safar <marek.safar@seznam.cz>Marek Safar
* Makefile: Build System.dll in two steps. Because of the circular dependency with System.XML.dll. svn path=/trunk/mcs/; revision=22761
2004-01-212004-01-21 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* System_test.dll.sources : Added CodeGeneratorIdentifierTest.cs svn path=/trunk/mcs/; revision=22336
2004-01-162004-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* System.dll.sources: added new files. * System_test.dll.sources: added new test. * System.IO/DefaultWatcher.cs: stub for the default watcher. * System.IO/WindowsWatcher.cs: stub for the windows watcher. * System.IO/FAMWatcher.cs: FAM watcher. * System.IO/FileAction.cs: enum with event types. * System.IO/FileSystemEventArgs.cs: added SetName property. * System.IO/FileSystemWatcher.cs: added support for the 3 watchers. * System.IO/IFileWatcher.cs: interface implemented by the watchers. * System.IO/SearchPattern.cs: copied from corlib. * Test/System.IO/FileSystemWatcherTest.cs: new test. svn path=/trunk/mcs/; revision=22139
2003-12-312004-01-01 Nick Drochak <ndrochak@gol.com>Nick Drochak
* Makefile: Suppress warnings about multiple Regex defs and obsolete calls in the test assembly. svn path=/trunk/mcs/; revision=21569
2003-12-302003-05-29 Nick Drochak <ndrochak@gol.com>Nick Drochak
* System_test.dll.config: Nunit loads configs with the same name as the test assembly. This is for the Swithes test. svn path=/trunk/mcs/; revision=21550
2003-12-082003-12-08 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* System_test.dll.sources : Added UriTest2.cs svn path=/trunk/mcs/; revision=20870
2003-11-192003-11-18 Todd Berman <tberman@gentoo.org>Todd Berman
* System.dll.sources: Added IOrderedDictionary.cs svn path=/trunk/mcs/; revision=20207
2003-11-122003-11-12 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* System.dll.sources: Added some new class files svn path=/trunk/mcs/; revision=19911
2003-09-04Integrate the patches contributed by Alon Gazit <along@mainsoft.com>.Duncan Mak
* BitVector32.cs (CreateSection): Check that the new calculated offset isn't more than 32 and not that the sum of the new offset and the number of set bits is more than 32. (this): Perform bitwise and with the complement of the mask shifted version (~(section.Mask << section.Offset)) and not with the shifted version of the mask's complement (~section.Mask << section.Offset). (this): Currently doesn't return the correct value when the data in the BitVector32 instance is negative. * ListDictionary.cs (CopyTo): If the array is null, it should throw ArgumentNullException. If the index is less than 0, it should throw ArgumentOutOfRangeException. (Remove): Throw ArgumentNullException when the parameter is null. * BitVector32Test.cs (TestNegativeIndexer, TestSectionIndexer, TestCreateSection): new tests from Alon Gazit <along@mainsoft.com>. * ListDictionaryTest.cs (CopyTo1, CopyTo2, Remove): New file, with tests from Alon Gazit <along@mainsoft.com>. svn path=/trunk/mcs/; revision=17885
2003-09-01new test addedAlexandre Pigolkine
svn path=/trunk/mcs/; revision=17778
2003-07-272003-07-27 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* System.dll.sources: SRDescriptionAttribute.cs moved svn path=/trunk/mcs/; revision=16734
2003-07-212003-07-21 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* README: removed (contained only obsolete build instructions) svn path=/trunk/mcs/; revision=16494
2003-07-212003-07-21 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* System.dll.sources: EventLogImpl.cs added svn path=/trunk/mcs/; revision=16493
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* System.dll.sources: AlphabeticalEnumConverter.cs, SRDescriptionAttribute.cs added svn path=/trunk/mcs/; revision=16400
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* System.dll.sources: Assembly/Locale.cs added, Globalization.Locale.cs removed svn path=/trunk/mcs/; revision=16387
2003-07-182003-07-18 Peter Williams <peter@newton.cx>Peter Williams
* Makefile (EXTRA_DISTFILES): A few more things not to dist. svn path=/trunk/mcs/; revision=16382
2003-07-182003-07-18 Peter Williams <peter@newton.cx>Peter Williams
* Makefile (EXTRA_DISTFILES): NUnit.Prefs is not a distable file. (in three places) svn path=/trunk/mcs/; revision=16381
2003-07-172003-07-17 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* Assembly/Consts.cs: added svn path=/trunk/mcs/; revision=16335
2003-07-162003-07-16 Peter Williams <peter@newton.cx>Peter Williams
A whole passel of build system changes. Doc updates: * build/README.makefiles: Doc updates. * build/profiles/net_1_0.make: Doc changes. * INSTALL.txt: A few more touchups. Better defaults: * build/config-default.make (prefix): Default install prefix should be /usr/local. * build/profiles/bootstrap.make: This profile ... * build/profiles/default.make: ... is now the default. * build/profiles/atomic.make: And the default is now this. Fixes for pre-build checks: * Makefile: Do the platform and (new) profile checks before the build, which took some infrastructure changes. * build/rules.make: Allow a Makefile to specify its own all/install/etc targets. * build/profiles/default.make (profile-check): Add a blank target here. * build/profiles/atomic.make: Check for a full MCS install to build against. HP/UX fixes with help from Bernie Solomon: * build/config-default.make (ECHO_ESCAPE): HP/UX 'echo' doesn't need a -e parameter to interpret escape codes. Test for that and define a configuration parameter. * build/library.make ($(makefrag)): Use $(ECHO_ESCAPE) instead of assuming that 'echo -e' will interpret escape codes. * build/executable.make ($(makefrag)): Here too. A make distcheck fix: * Makefile: Inherit the current prefix so that the build can find the right System.Xml.dll. And Windows build fixes with the invaluable help of Sebastian Pouliot (in various subdirectories). class/Mono.Data.SqliteClient: 2003-07-16 Peter Williams <peter@newton.cx> * Makefile (LIB_MCS_FLAGS): Add /r:System.dll here. Why wasn't this necessary with MCS? (csc.exe needs it.) class/System: 2003-07-16 Peter Williams <peter@newton.cx> * Makefile (SCARY_LIB): Flip around since what was bootstrap is now default. class/System/Test/System.Net: 2003-07-16 Peter Williams <peter@newton.cx> * IPAddressTest.cs: #if NET_1_1 for some IPv6 tests that rely on some NET_1_1-only features. class/System/Test/System.Net.Sockets: 2003-07-16 Peter Williams <peter@newton.cx> * TcpListenerTest.cs: Initialize outSock to null to prevent an mcs compile error. class/System.Data: 2003-07-16 Peter Williams <peter@newton.cx> * Makefile: Flip around for the new default build profile. (In a separate commit) class/System.Windows.Forms: 2003-07-16 Peter Williams <peter@newton.cx> * System.Windows.Forms.dll.sources: Don't build with two AssemblyInfo.cs files. class/corlib: 2003-07-16 Peter Williams <peter@newton.cx> * Makefile ($(test_makefrag)): Use $(ECHO_ESCAPE) for HP/UX portability fixes. (all-local): Don't build $(cmplib) by default, it's not something most people need, and the build is broken on Windows right now anyway. ilasm: 2003-07-16 Peter Williams <peter@newton.cx> * Makefile (ILParser.cs): Move this from parser/ so we avoid slash direction issues on the Windows build. * .cvsignore: Add ILParser.cs here. ilasm/parser: 2003-07-16 Peter Williams <peter@newton.cx> * .cvsignore: ILParser.cs has been moved. tools: 2003-07-16 Peter Williams <peter@newton.cx> * Makefile (DIST_ONLY_SUBDIRS): Don't build SqlSharp, it's very old and doesn't build on Windows. svn path=/trunk/mcs/; revision=16292
2003-07-142003-07-14 Jerome Laban <jlaban@wanadoo.fr>Jerome Laban
* System.dll.sources: Added NetConfigurationHandler.cs, NetConfig.cs, IPv6MulticastOption.cs svn path=/trunk/mcs/; revision=16213
2003-07-102003-07-10 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* list.unix: Added AssemblyInfo.cs svn path=/trunk/mcs/; revision=16096
2003-07-102003-07-10 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* list.unix: Removed System.Net/ProxyUseType.cs, System.Net/WebStatus.cs svn path=/trunk/mcs/; revision=16086
2003-07-072003-07-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* list.unix: Add VBCodeGenerator.cs, VBCodeProvider.cs svn path=/trunk/mcs/; revision=15996
2003-07-072003-07-05 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* list.unix: Add CodeParser.cs, Executor.cs, removed CompilerOptions.cs svn path=/trunk/mcs/; revision=15994
2003-07-052003-07-05 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* list.unix: Add WebPermission.cs, WebPermissionAttribute.cs svn path=/trunk/mcs/; revision=15962
2003-05-292003-05-29 Nick Drochak <ndrochak@gol.com>Nick Drochak
* makefile.gnu: turn on debug since it works again. svn path=/trunk/mcs/; revision=14992
2003-05-222003-05-21 Ben Maurer <bmaurer@users.sourceforge.net>Ben Maurer
StringWriter.cs: Fixed bug #43379 "Missing WebException.Response property." svn path=/trunk/mcs/; revision=14780
2003-03-31* Stubed rest of System.ComponentModelMartin Willemoes Hansen
svn path=/trunk/mcs/; revision=12967
2003-03-29* System.ComponentModel.Design.SerializationMartin Willemoes Hansen
Removed references to System.Web namespaces svn path=/trunk/mcs/; revision=12916
2003-03-29 * Stubed System.ComponentModel/LicenseContext.csMartin Willemoes Hansen
* Stubed System.ComponentModel/LicenseUsageMode.cs * Stubed rest of System.ComponentModel.Design svn path=/trunk/mcs/; revision=12914
2003-03-29 * Stubed System.ComponentModel/InheritanceAttribute.csMartin Willemoes Hansen
* Stubed System.ComponentModel/InheritanceLevel.cs * Stubed System.ComponentModel.Design/IDesignerFilter.cs * Stubed System.ComponentModel.Design/IInheritanceService.cs svn path=/trunk/mcs/; revision=12903
2003-03-28* Stubed rest of System.ComponentModel.Design.SerializationMartin Willemoes Hansen
svn path=/trunk/mcs/; revision=12875
2003-03-27* Made initial stubing of System.ComponentModel.Design.SerializationMartin Willemoes Hansen
svn path=/trunk/mcs/; revision=12872
2003-03-042003-03-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* list.unix: added RunInstallerAttribute.cs * System.ComponentModel/RunInstallerAttribute.cs: New file. svn path=/trunk/mcs/; revision=12193