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:
authorRolf Bjarne Kvinge <rolf@xamarin.com>2015-12-16 21:20:33 +0300
committerRolf Bjarne Kvinge <rolf@xamarin.com>2016-01-07 15:04:27 +0300
commit85da43008ad6b2a1a03b84ba12d5f076f162f915 (patch)
tree3928ce78741aed0345f2b938d70ad37a75f7b5b8 /mcs/class/System.ServiceModel.Internals
parent72f22200ae0351ddbb3e3b12bf2979e36982cfe3 (diff)
[corlib] Remove multiple appdomain support (AppDomain.CreateDomain, etc) from tvOS/watchOS.
Diffstat (limited to 'mcs/class/System.ServiceModel.Internals')
-rw-r--r--mcs/class/System.ServiceModel.Internals/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/System.ServiceModel.Internals/Makefile b/mcs/class/System.ServiceModel.Internals/Makefile
index 24b5d2fc2e9..2ddf10ebd26 100644
--- a/mcs/class/System.ServiceModel.Internals/Makefile
+++ b/mcs/class/System.ServiceModel.Internals/Makefile
@@ -2,12 +2,16 @@ thisdir = class/System.ServiceModel.Internals
SUBDIRS =
include ../../build/rules.make
+ifndef NO_MULTIPLE_APPDOMAINS
+REFERENCE_SOURCES_FLAGS += -d:MONO_FEATURE_MULTIPLE_APPDOMAINS
+endif
+
LIBRARY = System.ServiceModel.Internals.dll
LIB_REFS = System System.Core System.Xml
ifneq (2.1, $(FRAMEWORK_VERSION))
LIB_REFS += System.Configuration
endif
-LIB_MCS_FLAGS = /unsafe
+LIB_MCS_FLAGS = /unsafe $(REFERENCE_SOURCES_FLAGS)
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)