diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-30 02:41:24 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-30 02:41:24 +0000 |
commit | 5efccdff94f6f55dab357f3f7af1ab3591b68d04 (patch) | |
tree | fc4882cf50e6bd6060ceb8560175b1ec1f352500 /configure.in | |
parent | 8fd08b711c9da8b560b4af0436c6b1bdc0272734 (diff) | |
download | ATCD-5efccdff94f6f55dab357f3f7af1ab3591b68d04.tar.gz |
Forgot to finish modifying some of the asynch IO test reorganization.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/configure.in b/configure.in index 5aab52caa7a..7657d067a97 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl dnl $Id$ -AC_REVISION($Revision 0.57 $)dnl +AC_REVISION($Revision 0.58 $)dnl dnl dnl An autoconf script to automatically configure ACE. @@ -936,17 +936,6 @@ if test "$ace_user_enable_threads" = yes; then ACE_CHECK_THREADS fi dnl test "$ace_user_enable_threads" = yes -dnl Asynchronous IO library check -dnl Some platforms, such as Solaris puts aio_read in -lposix4, for example. -dnl In some cases, the thread library must be linked to in addition to the -dnl real-time support library. As such, make sure these checks are done -dnl after the thread library checks. -ace_has_aio_funcs=yes -AC_CHECK_FUNC(aio_read, , dnl - AC_CHECK_LIB(aio, aio_read, , - AC_CHECK_LIB(posix4, aio_read, , - AC_CHECK_LIB(rt, aio_read, , ace_has_aio_funcs=no)))) - dnl Check for sched_yield() in posix4 library. dnl Some platforms, such as Solaris, may define sched_yield() there. dnl Later we run AC_CHECK_FUNC(sched_yield), which is redundant i this case |