* Makefile (LIB_MCS_FLAGS): Add reference to Mono.Security.dll
authorRaja R Harinath <harinath@hurrynot.org>
Thu, 6 Jan 2005 06:31:17 +0000 (06:31 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Thu, 6 Jan 2005 06:31:17 +0000 (06:31 -0000)
only in the NET 2.0 profile.  See 2004-07-07 entry.

svn path=/trunk/mcs/; revision=38416

mcs/class/System.Security/ChangeLog
mcs/class/System.Security/Makefile

index c4f656fe6c42f4965b983bc6b8a8fc7b77015a05..2954403b3fdff344551fd93e21bab57a16b0c7fe 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-06  Raja R Harinath  <rharinath@novell.com>
+
+       * Makefile (LIB_MCS_FLAGS): Add reference to Mono.Security.dll
+       only in the NET 2.0 profile.  See 2004-07-07 entry.
+
 2005-01-05  Sebastien Pouliot  <sebastien@ximian.com>
 
        * Makefile: Don't ignore the CS0119 warnings (private field not used) 
index 3fa6c7017f9802963ec65751803ceaf5692aefdf..3289ed86fb2c5804d2f271e494634335f9485e1f 100644 (file)
@@ -4,9 +4,13 @@ include ../../build/rules.make
 
 LIBRARY = System.Security.dll
 LIB_MCS_FLAGS = /nowarn:618 \
-       /r:$(corlib) /r:System.dll /r:System.Xml.dll /r:Mono.Security.dll \
+       /r:$(corlib) /r:System.dll /r:System.Xml.dll \
        /debug+
 
+ifeq (net_2_0,$(PROFILE))
+LIB_MCS_FLAGS += /r:Mono.Security.dll
+endif
+
 TEST_MCS_FLAGS = /nowarn:1595 $(LIB_MCS_FLAGS)
 
 include ../../build/library.make