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:
authorZoltan Varga <vargaz@gmail.com>2013-02-13 11:44:12 +0400
committerZoltan Varga <vargaz@gmail.com>2013-02-13 11:44:45 +0400
commit077d89fc1200df07a120935e9cda46af9b3a41d6 (patch)
tree92a5b8ad67f23926ad884aa99cb34c2cbee057b4 /configure.in
parente764c82a63d5e77c07e851f87cf5fca0e1ba5e39 (diff)
Add an --enable-minimal option to disable support for multiple appdomains.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index c6f3f3c010a..d4625c14d91 100644
--- a/configure.in
+++ b/configure.in
@@ -734,7 +734,7 @@ AC_ARG_ENABLE(system-aot, [ --enable-system-aot Enable the Ahead-Of-Time compi
DISABLED_FEATURES=none
AC_ARG_ENABLE(minimal, [ --enable-minimal=LIST drop support for LIST subsystems.
- LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug,
+ LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug, appdomains,
reflection_emit, reflection_emit_save, large_code, logging, com, ssa, generics, attach, jit, simd, soft_debug, perfcounters, normalization, assembly_remapping, shared_perfcounters,
sgen_remset, sgen_marksweep_par, sgen_marksweep_fixed, sgen_marksweep_fixed_par, sgen_copying.],
[
@@ -870,6 +870,11 @@ if test "x$mono_feature_disable_shared_perfcounters" = "xyes"; then
AC_MSG_NOTICE([Disabled Shared perfcounters.])
fi
+if test "x$mono_feature_disable_appdomains" = "xyes"; then
+ AC_DEFINE(DISABLE_APPDOMAINS, 1, [Disable support for multiple appdomains.])
+ AC_MSG_NOTICE([Disabled support for multiple appdomains.])
+fi
+
if test "x$mono_feature_disable_sgen_remset" = "xyes"; then
AC_DEFINE(DISABLE_SGEN_REMSET, 1, [Disable wbarrier=remset support in SGEN.])
AC_MSG_NOTICE([Disabled wbarrier=remset support in SGEN.])