1AC_MSG_CHECKING(if event MPM supports this platform)
2if test $forking_mpms_supported != yes; then
3    AC_MSG_RESULT(no - This is not a forking platform)
4elif test $ac_cv_define_APR_HAS_THREADS != yes; then
5    AC_MSG_RESULT(no - APR does not support threads)
6elif test $have_threaded_sig_graceful != yes; then
7    AC_MSG_RESULT(no - SIG_GRACEFUL cannot be used with a threaded MPM)
8elif test $ac_cv_have_threadsafe_pollset != yes; then
9    AC_MSG_RESULT(no - APR_POLLSET_THREADSAFE is not supported)
10else
11    AC_MSG_RESULT(yes)
12    APACHE_MPM_SUPPORTED(event, yes, yes)
13fi
14