Date: Thu, 23 Jun 2016 20:15:42 +0200 From: olli hauer <ohauer@gmx.de> To: Mathieu Arnold <mat@FreeBSD.org>, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r417374 - in head: Mk Mk/Uses lang/php55 lang/php56 lang/php70 www/redaxo Message-ID: <a1a4345b-4dfa-94b9-19a3-1e1f24b648ea@gmx.de> In-Reply-To: <201606231319.u5NDJILd062527@repo.freebsd.org> References: <201606231319.u5NDJILd062527@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On 2016-06-23 15:19, Mathieu Arnold wrote: > Author: mat > Date: Thu Jun 23 13:19:17 2016 > New Revision: 417374 > URL: https://svnweb.freebsd.org/changeset/ports/417374 > > Log: > Move bsd.php.mk to Uses/php.mk > > PR: 210323 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210323 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210323 > Submitted by: mat > Exp-run by: antoine > Sponsored by: Absolight > Differential Revision: https://reviews.freebsd.org/D6867 ... > > HTTPD?= ${LOCALBASE}/sbin/httpd > -.if exists(${HTTPD}) > +. if exists(${HTTPD}) > APACHE_THR!= ${HTTPD} -V | ${GREP} threaded > -. if ${APACHE_THR:Myes} > +. if ${APACHE_THR:Myes} I think this should be written as: - APACHE_THR!= ${HTTPD} -V | ${GREP} threaded + APACHE_THR!= ${HTTPD} -V | ${AWK} '/threaded/ {print $2}' Looking at the output of apache24 `httpd -V | grep threaded' - mpm_event and mpm_worker threaded: yes (fixed thread count) - mpm_prefork threaded: no -- olli
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?a1a4345b-4dfa-94b9-19a3-1e1f24b648ea>