blob: 296f834a6946727bc006c75aa046b95450709d6a (
plain)
1
2
3
4
5
6
7
|
AC_MSG_CHECKING(if prefork MPM supports this platform)
if test $forking_mpms_supported != yes; then
AC_MSG_RESULT(no - This is not a forking platform)
else
AC_MSG_RESULT(yes)
APACHE_MPM_SUPPORTED(prefork, yes, no)
fi
|