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:
authorChris Toshok <toshok@gmail.com>2010-09-10 00:33:13 +0400
committerChris Toshok <toshok@gmail.com>2010-09-15 08:48:38 +0400
commitf4295a3be528753dd610cc222e198449e8cd12d7 (patch)
tree1aa1f8658001cc848461562e91226ee5c1ba5653 /configure.in
parent82a3f043325960b3f679e8608035524c09a99edf (diff)
if we're building with moonlight enabled, don't build mdb.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index c090feaa7e3..c11a69e28c5 100644
--- a/configure.in
+++ b/configure.in
@@ -2485,6 +2485,11 @@ if test "x$try_mono_debugger" = "xyes"; then
fi
fi
+# disable the debugger entirely when building with moonlight
+if test "x$with_moonlight" != "xno"; then
+ mono_debugger_supported=no
+fi
+
AC_MSG_CHECKING(if the Mono Debugger is supported on this platform)
if test "x$mono_debugger_supported" = "xyes"; then
BOEHM_DEFINES="$BOEHM_DEFINES -DMONO_DEBUGGER_SUPPORTED"