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:
authorPaolo Molaro <lupus@oddwiz.org>2002-08-27 20:19:15 +0400
committerPaolo Molaro <lupus@oddwiz.org>2002-08-27 20:19:15 +0400
commit3923c5163dfb1f0b3eaed50cccf89853aba30a94 (patch)
treefd2bf25b0b793176a16b603036c8054dcbfbbaea /configure.in
parent258276203c667c4d2cde9ceae86f3e2c3145a9a8 (diff)
Tue Aug 27 18:17:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
* configure.in: remove iconv checks. svn path=/trunk/mono/; revision=7093
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in24
1 files changed, 0 insertions, 24 deletions
diff --git a/configure.in b/configure.in
index 0204dbc344b..0c46310a37e 100644
--- a/configure.in
+++ b/configure.in
@@ -54,9 +54,6 @@ AM_PROG_LIBTOOL
AC_CHECK_HEADERS(sys/filio.h sys/sockio.h netdb.h utime.h)
-AC_CHECK_HEADERS(iconv.h)
-AC_CHECK_HEADERS(giconv.h)
-
# for mono/metadata/debug-symfile.c
AC_CHECK_HEADERS(elf.h)
@@ -482,27 +479,6 @@ if test "x$ac_cv_have_dev_random" = "xno" \
***]])
fi
-if test "x$cross_compiling" = "xno"; then
-# check for new iconv version
-AC_MSG_CHECKING(for new iconv)
-AC_CACHE_VAL(new_iconv,[
- AC_TRY_RUN([#include <stdio.h>
- #include <iconv.h>
-
- int main()
- {
- exit (iconv_open ("UTF-16le", "UTF-8") == (iconv_t)-1);
- }
- ],
- new_iconv=yes,new_iconv=)])
-if test -n "$new_iconv"; then
- AC_MSG_RESULT(yes)
- AC_DEFINE(HAVE_NEW_ICONV)
-else
- AC_MSG_RESULT(no)
-fi
-fi
-
AC_MSG_CHECKING([if inter-process shared handles are requested])
AC_ARG_ENABLE(shared-handles, [ --disable-shared-handles disable inter-process shared handles], try_shared_handles=$enableval, try_shared_handles=yes)
AC_MSG_RESULT($try_shared_handles)