Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 93568 invoked from network); 9 Mar 2005 09:37:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 9 Mar 2005 09:37:08 -0000 Received: (qmail 42220 invoked by uid 500); 9 Mar 2005 09:37:03 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 42155 invoked by uid 500); 9 Mar 2005 09:37:03 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 42121 invoked by uid 99); 9 Mar 2005 09:37:03 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of jorton@redhat.com designates 66.187.233.31 as permitted sender) Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 09 Mar 2005 01:37:02 -0800 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j299b00p026874 for ; Wed, 9 Mar 2005 04:37:00 -0500 Received: from radish.cambridge.redhat.com (radish.cambridge.redhat.com [172.16.18.90]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j299asn32099 for ; Wed, 9 Mar 2005 04:36:54 -0500 Received: from radish.cambridge.redhat.com (localhost.localdomain [127.0.0.1]) by radish.cambridge.redhat.com (8.13.1/8.12.7) with ESMTP id j299arpS004770 for ; Wed, 9 Mar 2005 09:36:53 GMT Received: (from jorton@localhost) by radish.cambridge.redhat.com (8.13.1/8.12.10/Submit) id j299aqCs004769 for dev@httpd.apache.org; Wed, 9 Mar 2005 09:36:52 GMT Date: Wed, 9 Mar 2005 09:36:52 +0000 From: Joe Orton To: dev@httpd.apache.org Subject: Re: svn commit: r156574 - in httpd/httpd/trunk: modules/generators/config5.m4 server/mpm/config.m4 Message-ID: <20050309093652.GA3824@redhat.com> Mail-Followup-To: dev@httpd.apache.org References: <20050308224035.6765.qmail@minotaur.apache.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20050308224035.6765.qmail@minotaur.apache.org> User-Agent: Mutt/1.4.1i X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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