svn commit: r345873 - head/net/phpldapadmin

Matthew Seaman matthew at FreeBSD.org
Mon Feb 24 15:58:19 UTC 2014


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}


More information about the svn-ports-all mailing list