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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-06-12 07:16:02 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-06-12 07:16:02 +0400
commite9806250737459ed2a0b46abbe30f5f92c0ea1ab (patch)
tree2d0c55c3c1c7dcd775b76123e4ca927b8ec31f19 /runtime
parentaea4b0b92d723fcd17ac98c0edd90a0956d0c002 (diff)
Don't copy Mono.CSharp.Debugger on windows as it's not built
svn path=/trunk/mono/; revision=29400
Diffstat (limited to 'runtime')
-rw-r--r--runtime/net_1_1/Makefile.am8
-rw-r--r--runtime/net_2_0/Makefile.am8
2 files changed, 14 insertions, 2 deletions
diff --git a/runtime/net_1_1/Makefile.am b/runtime/net_1_1/Makefile.am
index 6fc2cbe0092..35a9e34d5c7 100644
--- a/runtime/net_1_1/Makefile.am
+++ b/runtime/net_1_1/Makefile.am
@@ -10,6 +10,12 @@ else
mono_runtime = $(top_builddir)/mono/interpreter/mint
endif
+if PLATFORM_WIN32
+MONO_CSHARP_DEBUGGER =
+else
+MONO_CSHARP_DEBUGGER = Mono.CSharp.Debugger
+endif
+
gac_assemblies_list = \
Accessibility \
ByteFX.Data \
@@ -27,7 +33,7 @@ gac_assemblies_list = \
Microsoft.VisualC \
Microsoft.Vsa \
Mono.Cairo \
- Mono.CSharp.Debugger \
+ $(MONO_CSHARP_DEBUGGER) \
Mono.Data.SybaseClient \
Mono.Data.SqliteClient \
Mono.Data.TdsClient \
diff --git a/runtime/net_2_0/Makefile.am b/runtime/net_2_0/Makefile.am
index f1d5694cede..9df6e46b898 100644
--- a/runtime/net_2_0/Makefile.am
+++ b/runtime/net_2_0/Makefile.am
@@ -10,6 +10,12 @@ else
mono_runtime = $(top_builddir)/mono/interpreter/mint
endif
+if PLATFORM_WIN32
+MONO_CSHARP_DEBUGGER =
+else
+MONO_CSHARP_DEBUGGER = Mono.CSharp.Debugger
+endif
+
gac_assemblies_list = \
Accessibility \
ByteFX.Data \
@@ -27,7 +33,7 @@ gac_assemblies_list = \
Microsoft.VisualC \
Microsoft.Vsa \
Mono.Cairo \
- Mono.CSharp.Debugger \
+ $(MONO_CSHARP_DEBUGGER) \
Mono.Data.SybaseClient \
Mono.Data.SqliteClient \
Mono.Data.TdsClient \