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
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2004-11-25 16:39:56 +0300
committerRaja R Harinath <harinath@hurrynot.org>2004-11-25 16:39:56 +0300
commitc85d42b11bb7c1673e05337221765e5924ed603b (patch)
treea6149410942b7bc56079dcd7a1718d628b8f6618 /mcs/class/Mono.C5
parent41724c363ce61fd5f143c5c11488abc931199420 (diff)
In .:
* Makefile (DISTFILES): Add nunit.key. In build: * platforms/linux.make (EXTERNAL_MCS,EXTERNAL_MBAS,EXTERNAL_RUNTIME): New. * platforms/win32.make: Likewise. * profiles/basic.make: Use $(EXTERNAL_MCS). * profiles/net_1_1_bootstrap.make: Likewise. * library.make ($(the_lib)): Add support for BUILT_SOURCES. (run-test-lib): Pass $(TEST_HARNESS_FLAGS) to harness. Useful to pass, say /labels, to nunit-console. In class: * Makefile (DISTFILES): Add public and private keys. (lib/basic.tar.gz): New. (dist-local): Distribute it. (DIST_ONLY_SUBDIRS): Distribute Managed.Windows.Forms. * I18N/Makefile (DISTFILES): Add Assembly/ChangeLog and Assembly/AssemblyInfo.cs. * IBM.Data.DB2/Makefile (EXTRA_DISTFILES): Distribute ibm.pub. In class/System.Web: * Makefile (RESOURCE_FILES): New. List set of resources. (EXTRA_DISTFILES): New. Distribute them. In class/ICSharpCode.SharpZipLib: * Makefile (EXTRA_DISTFILES): Add SharpZipLib.pub. In class/System.Data: * Makefile (BUILT_SOURCES): New. Build Mono.Data.SqlExpressions/Parser.cs. (EXTRA_DISTFILES): Add Mono.Data.SqlExpressions/Parser.jay. * System.Data.dll.sources: Don't mention Mono.Data.SqlExpressions/Parser.cs. In class/Microsoft.Web.Services: * Makefile (dist-local): Use cp -p. In class/Npgsql: * Makefile (EXTRA_DISTFILES): Add Npgsql.dll.resources. In class/Mono.C5: * Makefile (EXTRA_DISTFILES): Distribute LICENCE.txt and keys. In class/Mono.Security.Win32: * Makefile (NO_TEST): Define when not in W32. In class/Microsoft.VisualBasic: * Makefile (EXTRA_DISTFILES): Fix typo. svn path=/trunk/mcs/; revision=36550
Diffstat (limited to 'mcs/class/Mono.C5')
-rw-r--r--mcs/class/Mono.C5/ChangeLog4
-rw-r--r--mcs/class/Mono.C5/Makefile4
2 files changed, 8 insertions, 0 deletions
diff --git a/mcs/class/Mono.C5/ChangeLog b/mcs/class/Mono.C5/ChangeLog
index 1be84c3d9d7..c068b9d26b5 100644
--- a/mcs/class/Mono.C5/ChangeLog
+++ b/mcs/class/Mono.C5/ChangeLog
@@ -1,3 +1,7 @@
+2004-11-25 Raja R Harinath <rharinath@novell.com>
+
+ * Makefile (EXTRA_DISTFILES): Distribute LICENCE.txt and keys.
+
2004-11-19 Martin Baulig <martin@ximian.com>
* Wrappers.cs: Removed all the FIXME's. GMCS can now compile the
diff --git a/mcs/class/Mono.C5/Makefile b/mcs/class/Mono.C5/Makefile
index 320be449265..a10da3c190d 100644
--- a/mcs/class/Mono.C5/Makefile
+++ b/mcs/class/Mono.C5/Makefile
@@ -7,4 +7,8 @@ LIBRARY_SNK = c5.snk
LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll
NO_TEST = yes
+EXTRA_DISTFILES = \
+ LICENSE.txt \
+ c5.pub c5.snk c5.xml
+
include ../../build/library.make