From owner-freebsd-current@FreeBSD.ORG Thu Apr 4 15:23:49 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0569DF55 for ; Thu, 4 Apr 2013 15:23:49 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from relay.andxor.it (relay.andxor.it [195.223.2.3]) by mx1.freebsd.org (Postfix) with ESMTP id 429059F6 for ; Thu, 4 Apr 2013 15:23:48 +0000 (UTC) Received: (qmail 964 invoked from network); 4 Apr 2013 15:17:05 -0000 Received: from alex.andxor.it (a.premoli@andxor.it@192.168.2.30) by relay.andxor.it with ESMTPSA; 4 Apr 2013 15:17:05 -0000 Message-ID: <515D9971.40203@FreeBSD.org> Date: Thu, 04 Apr 2013 17:17:05 +0200 From: Alex Dupre User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:19.0) Gecko/20100101 Firefox/19.0 SeaMonkey/2.16 MIME-Version: 1.0 To: Olli Hauer , "O. Hartmann" Subject: Re: www/apache24: ports like lang/php5 or devel/subversion are disturbed by the apache24 port! References: <1364750502.1715.34.camel@thor.walstatt.dyndns.org> <515875C8.1080201@FreeBSD.org> In-Reply-To: <515875C8.1080201@FreeBSD.org> X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Current , FreeBSD ports X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Apr 2013 15:23:49 -0000 Olli Hauer ha scritto: > It will take a while until php is really apache24 ready. > > Work is in progress on php upstream. > > One of the issues is that APXS does not provide the > MPM model which is needed for php and others to build. Can you try the following patch, please? Index: bsd.php.mk =================================================================== --- bsd.php.mk (revision 315696) +++ bsd.php.mk (working copy) @@ -60,9 +60,8 @@ HTTPD?= ${LOCALBASE}/sbin/httpd .if exists(${HTTPD}) -APXS?= ${LOCALBASE}/sbin/apxs -APACHE_MPM!= ${APXS} -q MPM_NAME -. if ${APACHE_MPM} == "worker" || ${APACHE_MPM} == "event" +APACHE_THR!= ${HTTPD} -V | ${GREP} threaded +. if ${APACHE_THR:Myes} PHP_EXT_DIR:= ${PHP_EXT_DIR}-zts . endif .elif defined(APACHE_PORT) && (${APACHE_PORT:M*worker*} != "" || ${APACHE_PORT:M*event*} != "") -- Alex Dupre