Browse Source

Make compile

svn path=/trunk/mcs/; revision=236
Miguel de Icaza 24 years ago
parent
commit
ae13bcc209

+ 5 - 3
mcs/class/System.XML/makefile

@@ -1,3 +1,5 @@
+DIRS=System.Xml
+
 all:
 	@echo "You must use 'make windows' or 'make unix'."
 	@echo "'make unix' is broken for now."
@@ -9,6 +11,6 @@ unix:
 	@echo "'make unix' is broken for now."
 
 make-list:
-	cat common.src windows.src > list
-
-test: $(PLATFORM)
+	for i in $(DIRS); do						\
+		cat $$i/common.src $$i/windows.src | sed "s/^/$$i\\\\/";	\
+	done > list

+ 1 - 1
mcs/class/corlib/System.Collections/IDictionary.cs

@@ -33,7 +33,7 @@ namespace System.Collections {
 
 		bool Contains (object key);
 
-		IDictionaryEnumerator GetEnumerator ();
+		new IDictionaryEnumerator GetEnumerator ();
 
 		void Remove (object key);
 	}

+ 1 - 0
mcs/class/corlib/System.Collections/common.src

@@ -1,4 +1,5 @@
 ArrayList.cs
+BitArray.cs
 Hashtable.cs
 ICollection.cs
 IComparer.cs

+ 0 - 1
mcs/class/corlib/System/common.src

@@ -6,7 +6,6 @@ ArithmeticException.cs
 Array.cs
 ArrayTypeMismatchException.cs
 Boolean.cs
-BitArray.cs
 Convert.cs
 DivideByZeroException.cs
 DuplicateWaitObjectException.cs