Date: Tue, 5 Dec 2017 17:00:49 +0000 (UTC) From: Torsten Zuehlsdorff <tz@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455592 - head/lang/php72 Message-ID: <201712051700.vB5H0n3T002320@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tz Date: Tue Dec 5 17:00:48 2017 New Revision: 455592 URL: https://svnweb.freebsd.org/changeset/ports/455592 Log: lang/php72: Add support for libargon2 PHP now provides support for argon-hashes. Add this support to the port. Reported by: Petr Hejl <petr.hejl@freedev.cz> Modified: head/lang/php72/Makefile Modified: head/lang/php72/Makefile ============================================================================== --- head/lang/php72/Makefile Tue Dec 5 16:44:09 2017 (r455591) +++ head/lang/php72/Makefile Tue Dec 5 17:00:48 2017 (r455592) @@ -3,7 +3,7 @@ PORTNAME= php72 DISTVERSION= 7.2.0RC6 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= lang devel www MASTER_SITES= https://downloads.php.net/~pollita/ DISTNAME= php-${DISTVERSION} @@ -23,7 +23,8 @@ USE_AUTOTOOLS= autoconf #USES+= autoreconf gmake #GNU_CONFIGURE= yes -LIB_DEPENDS= libpcre.so:devel/pcre +LIB_DEPENDS= libpcre.so:devel/pcre \ + libargon2.so:security/libargon2 CONFIGURE_ARGS+=--with-layout=GNU \ --localstatedir=/var \ @@ -33,6 +34,7 @@ CONFIGURE_ARGS+=--with-layout=GNU \ --enable-mysqlnd \ --with-libxml-dir=${LOCALBASE} \ --with-pcre-regex=${LOCALBASE} \ + --with-password-argon2=${LOCALBASE} \ --program-prefix="" USE_GNOME= libxml2
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712051700.vB5H0n3T002320>