works for BeOS but adding others shouldn't be hard. Also added the OS2
MPM to the list.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84589
13f79535-47bb-0310-9956-
ffa450edef68
AC_MSG_CHECKING(which MPM to use)
AC_ARG_WITH(mpm,
[ --with-mpm=MPM Choose the process model for Apache to use.
- MPM={dexter,mpmt_beos,mpmt_pthread,prefork}],[
+ MPM={dexter,mpmt_beos,mpmt_pthread,prefork,spmt_os2}],[
APACHE_MPM=$withval
],[
APACHE_MPM=mpmt_pthread
+ case "`uname -sr`" in
+ "BeOS"*)
+ APACHE_MPM=mpmt_beos;;
+ esac
])
AC_MSG_RESULT($APACHE_MPM)