mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
. axe --with-mpm="shared" hack, replace with --enable-mpms-shared={all|list} . replace singular MPM_NAME with access to the list of enabled MPMs . replace singular MPM_SUBDIR with list MPM_SUBDIRS . enable OS/2 MPM in same manner as others with configure support instead of hard-coding in configure.in Current state: MPMs are built as static archives (but not linked to httpd) with --enable-mpms-shared, so they still have to be built with apxs to load dynamically. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@832228 13f79535-47bb-0310-9956-ffa450edef68
11 lines
220 B
Plaintext
11 lines
220 B
Plaintext
AC_MSG_CHECKING(if mpmt_os2 MPM supports this platform)
|
|
case $host in
|
|
*os2-emx*)
|
|
AC_MSG_RESULT(yes)
|
|
APACHE_MPM_SUPPORTED(mpmt_os2, no, yes)
|
|
;;
|
|
*)
|
|
AC_MSG_RESULT(no)
|
|
;;
|
|
esac
|