From 8af28d727e400167fffa4c9227271b202be0a42f Mon Sep 17 00:00:00 2001 From: miguel Date: Sat, 9 May 2009 16:52:12 +0000 Subject: [PATCH] Add a handful of extra DISABLE options to the list git-svn-id: svn+ssh://mono-cvs.ximian.com/source/trunk/mono@133827 e3ebcda4-bce8-0310-ba0a-eca2169e7518 --- configure.in | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configure.in b/configure.in index dbaaa4fda..642f61be7 100644 --- a/configure.in +++ b/configure.in @@ -639,6 +639,14 @@ if test "x$mono_feature_disable_generics" = "xyes"; then AC_DEFINE(DISABLE_GENERICS, 1, [Disable generics support]) fi +if test "x$mono_feature_disable_shadowcopy" = "xyes"; then + AC_DEFINE(DISABLE_SHADOW_COPY, 1, [Disable Shadow Copy for AppDomains]) +fi + +if test "x$mono_feature_disable_portability" = "xyes"; then + AC_DEFINE(DISABLE_PORTABILITY, 1, [Disables the IO portability layer]) +fi + if test "x$mono_feature_disable_attach" = "xyes"; then AC_DEFINE(DISABLE_ATTACH, 1, [Disable agent attach support]) fi -- 2.11.4.GIT