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:
authorMiguel de Icaza <miguel@gnome.org>2004-11-28 07:37:27 +0300
committerMiguel de Icaza <miguel@gnome.org>2004-11-28 07:37:27 +0300
commit49741ceed4e869ec813af570725067c569cbbab8 (patch)
treed4f67115df412f4a6ce1dfbc05fc27c1da2c4df4 /configure.in
parente3ee42d99d33ac12fe87c633047604ac44ef2d69 (diff)
Turn off ICU by default as planned
svn path=/trunk/mono/; revision=36709
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 4f6b66578c5..bc3f0657185 100644
--- a/configure.in
+++ b/configure.in
@@ -1204,14 +1204,17 @@ fi
#
ICU_CFLAGS=""
ICU_LIBS=""
-enable_icu=no
+enable_icu="no; default"
-probe_icu=true
+probe_icu=false
AC_ARG_WITH(icu, [ --with-icu=yes/no],
if test x$with_icu = xno; then
probe_icu=false;
AC_MSG_RESULT(Will not probe for ICU)
fi
+ if test x$with_icu = xyes; then
+ probe_icu=true;
+ fi
)
if $probe_icu; then