Date: Mon, 24 Feb 2014 15:58:19 +0000 (UTC) From: Matthew Seaman <matthew@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345873 - head/net/phpldapadmin Message-ID: <201402241558.s1OFwJLh091074@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: matthew Date: Mon Feb 24 15:58:19 2014 New Revision: 345873 URL: http://svnweb.freebsd.org/changeset/ports/345873 QAT: https://qat.redports.org/buildarchive/r345873/ Log: PLA is incompatible with php 5.5 (and presumably above) as it: * Defines a function that clashes with the new password_hash() standard function. * Uses the deprecated /e modifier in preg_replace() Possibly others. Marks as IGNORE_WITH_PHP=55 Modified: head/net/phpldapadmin/Makefile Modified: head/net/phpldapadmin/Makefile ============================================================================== --- head/net/phpldapadmin/Makefile Mon Feb 24 15:56:27 2014 (r345872) +++ head/net/phpldapadmin/Makefile Mon Feb 24 15:58:19 2014 (r345873) @@ -3,7 +3,7 @@ PORTNAME= phpldapadmin PORTVERSION= 1.2.3 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= net www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-php5/${PORTVERSION} @@ -18,6 +18,10 @@ NO_ARCH= yes NO_BUILD= yes USE_PHP= gettext ldap openssl pcre session xml iconv hash +# Function name clashes with new PHP built-in. Uses deprecated +# preg_replace /e modifier. +IGNORE_WITH_PHP=55 + WANT_PHP_WEB= yes GROUPS?= ${WWWGRP}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402241558.s1OFwJLh091074>