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:
authorAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2013-04-04 19:02:29 +0400
committerAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2013-04-04 19:02:29 +0400
commit2edeeb60e72cea311d6fa5eaf39ca6a4504b0cd4 (patch)
treed34053ab054320cfb1843a886bda82f96630eed2 /mcs/class/System.Reactive.Windows.Forms
parent0bf20c9542dd724a4749e4df831630ec7a1f464b (diff)
rx: Add -d:HAS_AWAIT options to 4.5 and 2.1 builds.mono-3.0.8
Diffstat (limited to 'mcs/class/System.Reactive.Windows.Forms')
-rw-r--r--mcs/class/System.Reactive.Windows.Forms/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.Reactive.Windows.Forms/Makefile b/mcs/class/System.Reactive.Windows.Forms/Makefile
index 63b3fe0f4a5..bc427b92a19 100644
--- a/mcs/class/System.Reactive.Windows.Forms/Makefile
+++ b/mcs/class/System.Reactive.Windows.Forms/Makefile
@@ -13,12 +13,12 @@ LIB_MCS_FLAGS = \
-r:System.Windows.Forms.dll
ifeq (2.1, $(FRAMEWORK_VERSION))
-LIB_MCS_FLAGS += -d:NO_TASK_DELAY
+LIB_MCS_FLAGS += -d:NO_TASK_DELAY -d:HAS_AWAIT
endif
NET_4_5 := $(filter 4.5, $(FRAMEWORK_VERSION))
ifdef NET_4_5
-LIB_MCS_FLAGS += -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC
+LIB_MCS_FLAGS += -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT
endif
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)