diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-06-26 21:06:03 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-06-26 21:06:03 +0000 |
commit | bb7ea8ae9cb3395c98d2ba175d72489bcce6f0ca (patch) | |
tree | 1e0f278408f71ca3eefc653dd22f54574c7b3370 /configure.in | |
parent | e223e45318d232ef83bfded8f15a78a363f82597 (diff) | |
download | ATCD-bb7ea8ae9cb3395c98d2ba175d72489bcce6f0ca.tar.gz |
Added support/test for ACE_HAS_MEMCHR macro.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/configure.in b/configure.in index bdc03b11319..02b6b27f610 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl dnl $Id$ -AC_REVISION($Revision 0.60 $)dnl +AC_REVISION($Revision 0.61 $)dnl dnl dnl An autoconf script to automatically configure ACE. @@ -631,6 +631,24 @@ dnl line, then "no_x" is set to "yes." esac ],) +AC_ARG_ENABLE(fl-reactor, + [ --enable-fl-reactor build support for the FlReactor [default=no]], + [ + case "${enableval}" in + yes) + AC_MSG_ERROR(--enable-fl-reactor currently unimplemented) + ace_user_enable_fl_reactor=yes + ;; + no) + AC_MSG_ERROR(--enable-fl-reactor currently unimplemented) + ace_user_enable_fl_reactor=no + ;; + *) + AC_MSG_ERROR(bad value ${enableval} for --enable-fl-reactor) + ;; + esac + ],) + AC_ARG_WITH(gperf, [ --with-gperf compile the gperf program [default=yes]], [ @@ -3267,6 +3285,9 @@ AC_CHECK_FUNC(strrchr, dnl , AC_DEFINE(ACE_LACKS_STRRCHR)) +AC_CHECK_FUNC(memchr, dnl + AC_DEFINE(ACE_HAS_MEMCHR),) + AC_CHECK_FUNC(syscall, dnl , AC_DEFINE(ACE_LACKS_SYSCALL)) |