diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-30 02:28:32 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-30 02:28:32 +0000 |
commit | 8fd08b711c9da8b560b4af0436c6b1bdc0272734 (patch) | |
tree | ea43c3fd163dd5418e3993f10547dd17c572b759 /configure.in | |
parent | 52745f4a5a528cc7915bd90b699969b57b6ee1ef (diff) | |
download | ATCD-8fd08b711c9da8b560b4af0436c6b1bdc0272734.tar.gz |
* configure.in:
* m4/features.m4:
Added new M4 macro include file, and moved asynchronous IO tests
to `m4/features.m4'. The asynchronous IO tests were improved by
making them run-time tests. Cross-compiled platforms will fall
back to a compile-time test. Thanks to Alex for providing
run-time tests. The tests are based on his AIO tests found in
the examples/Reactor/Proactor directory.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/configure.in b/configure.in index 5f320409919..5aab52caa7a 100644 --- a/configure.in +++ b/configure.in @@ -5503,24 +5503,7 @@ if test "$ace_user_enable_threads" = yes; then fi dnl Check for asynchronous IO calls -if test "$ace_has_aio_funcs" = yes; then - ACE_CACHE_CHECK(for asynchronous IO calls, - ace_cv_feature_aio_calls,[ - AC_TRY_COMPILE( - [ -#include <aio.h> - ], - [ - aiocb* aiocb_ptr (void); - ], - [ - ace_cv_feature_aio_calls=yes - ], - [ - ace_cv_feature_aio_calls=no - ]) - ], AC_DEFINE(ACE_HAS_AIO_CALLS),) -fi dnl test "$ace_has_aio_funcs" = yes +ACE_CHECK_ASYNCH_IO dnl Check for UNIX domain sockets ACE_CACHE_CHECK(for UNIX domain sockets, |