svn commit: r417374 - in head: Mk Mk/Uses lang/php55 lang/php56 lang/php70 www/redaxo

olli hauer ohauer at gmx.de
Thu Jun 23 18:15:52 UTC 2016


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


More information about the svn-ports-head mailing list