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
2003-07-202003-07-20 Peter Williams <peter@newton.cx>Peter Williams
* library.make ($(response)): Do a "Creating ..." line here. * executable.make ($(response)): Same. * config-default.make: Make warning more forceful. * rules.make: Define a useful 'PLATFORM_MONO_NATIVE' that is set if the platform does not have a native runtime (ie, linux). Also reorder some definitions. 2003-07-20 Peter Williams <peter@newton.cx> * Created. See ../ChangeLog for entries earlier than this. svn path=/trunk/mcs/; revision=16453
2003-07-18Remove Windows debugging information (*.pdb) on make clean.Peter Williams
svn path=/trunk/mcs/; revision=16384
2003-07-182003-07-18 Peter Williams <peter@newton.cx>Peter Williams
* build/library.make (dist-local): Fancy make dist magic gives way to boring old 'for'. * build/executable.make (dist-local): Ditto. class/corlib: 2003-07-18 Peter Williams <peter@newton.cx> * Makefile (dist-local): The fancy shell script was neat, but ultimately unnecessary and counterproductive. Alas. svn path=/trunk/mcs/; revision=16380
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-14New build system from Peter Williams (peter@newton.cx)Gonzalo Paniagua Javier
svn path=/trunk/mcs/; revision=16194