You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Joe Orton <jo...@redhat.com> on 2005/03/09 10:36:52 UTC

Re: svn commit: r156574 - in httpd/httpd/trunk: modules/generators/config5.m4 server/mpm/config.m4

On Tue, Mar 08, 2005 at 10:40:35PM -0000, Paul Querna wrote:
...
> --- httpd/httpd/trunk/server/mpm/config.m4 (original)
> +++ httpd/httpd/trunk/server/mpm/config.m4 Tue Mar  8 14:40:33 2005
> @@ -12,7 +12,25 @@
>  
>  apache_cv_mpm=$APACHE_MPM
>  	
> -if test "$apache_cv_mpm" = "worker" -o "$apache_cv_mpm" = "event" -o "$apache_cv_mpm" = "perchild" -o "$apache_cv_mpm" = "leader" -o "$apache_cv_mpm" = "threadpool" ; then
> +ap_mpm_is_threaded ()
> +{

I'm not sure sh functions are portable (at least the autoconf manual
claims they are not); this should probably be an m4 macro instead to be
on the safe side.

joe