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>2005-04-08 04:17:59 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2005-04-08 04:17:59 +0400
commitc60ab219db24cadfcfe27c006abc66de19eb9cad (patch)
tree157c33ed1e886bf6991706ea71f2aad59d88d5b3 /configure.in
parentefb370e62959930c22a231afda1171f4079483af (diff)
2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* configure.in: no more checks for aio_*. svn path=/trunk/mono/; revision=42668
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in35
1 files changed, 0 insertions, 35 deletions
diff --git a/configure.in b/configure.in
index 804e8160f22..70e9e0f6f51 100644
--- a/configure.in
+++ b/configure.in
@@ -1035,41 +1035,6 @@ if test x$platform_win32 = xno; then
AC_MSG_RESULT(no)
])
- dnl *********************
- dnl *** Check for AIO ***
- dnl *********************
- AC_MSG_CHECKING([for SIGEV_THREAD definition])
- dnl Some systems (FreeBSD at least) may have aio_read
- dnl but don't support/define SIGEV_THREAD.
- AC_TRY_COMPILE([
- #include <sys/signal.h>
- ],[
- int x = SIGEV_THREAD;
- ],[
- ac_cv_c_sigev_thread=yes
- AC_MSG_RESULT(yes)
- ],[
- AC_MSG_RESULT(no)
- ])
-
- if test "$ac_cv_c_sigev_thread" = "yes" ; then
- AC_CHECK_HEADERS(aio.h sys/aio.h)
- AC_CHECK_LIB(rt, aio_read, [ LIBS="$LIBS -lrt" ],)
- SIGVAL_PTR="undefined"
- if test "$ac_cv_header_aio_h" = "yes" -o "$ac_cv_header_sys_aio_h" = "yes" ; then
- AC_CHECK_MEMBER(union sigval.sigval_ptr,SIGVAL_PTR="sigval_ptr",, [
- #include <sys/signal.h>
- ])
- AC_CHECK_MEMBER(union sigval.sival_ptr,SIGVAL_PTR="sival_ptr",, [
- #include <sys/signal.h>
- ])
- if test "$SIGVAL_PTR" = "undefined" ; then
- AC_MSG_ERROR([Unable to detect field name in 'union sigval'])
- fi
- fi
- AC_DEFINE_UNQUOTED(SIGVAL_PTR,$SIGVAL_PTR,[Pointer field name in 'union sigval'])
- fi
-
dnl **********************************
dnl *** Checks for MonoPosixHelper ***
dnl **********************************