Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Jun 2016 13:57:38 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r417717 - in head: . Mk Mk/Uses dns/pear-Net_DNS mail/squirrelmail net/self-service-password security/cryptstring security/pear-Crypt_CHAP security/pear-File_SMBPasswd security/pear-Hor...
Message-ID:  <201606281357.u5SDvcpC090474@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Tue Jun 28 13:57:37 2016
New Revision: 417717
URL: https://svnweb.freebsd.org/changeset/ports/417717

Log:
  USEify USES=php.
  
  The following variables have been folded into arguments:
  
  - USE_PHPIZE -> USES=php:phpize
  - USE_PHPEXT -> USES=php:ext
  - USE_ZENDEXT -> USES=php:zend
  - USE_PHP_BUILD -> USES=php:build
  - WANT_PHP_CLI -> USES=php:cli
  - WANT_PHP_CGI -> USES=php:cgi
  - WANT_PHP_MOD -> USES=php:mod
  - WANT_PHP_WEB -> USES=php:web
  - WANT_PHP_EMB -> USES=php:embed
  
  PR:		210529
  Submitted by:	mat
  Exp-run by:	antoine
  Sponsored by:	Absolight
  Differential Revision:	https://reviews.freebsd.org/D6936

Modified:
  head/CHANGES
  head/Mk/Uses/php.mk
  head/Mk/bsd.sanity.mk   (contents, props changed)
  head/dns/pear-Net_DNS/Makefile   (contents, props changed)
  head/mail/squirrelmail/Makefile   (contents, props changed)
  head/net/self-service-password/Makefile   (contents, props changed)
  head/security/cryptstring/Makefile   (contents, props changed)
  head/security/pear-Crypt_CHAP/Makefile   (contents, props changed)
  head/security/pear-File_SMBPasswd/Makefile   (contents, props changed)
  head/security/pear-Horde_Crypt_Blowfish/Makefile   (contents, props changed)
  head/sysutils/gosa/Makefile   (contents, props changed)
  head/www/thundercache/Makefile   (contents, props changed)
  head/www/thundersnarf/Makefile   (contents, props changed)

Modified: head/CHANGES
==============================================================================
--- head/CHANGES	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/CHANGES	Tue Jun 28 13:57:37 2016	(r417717)
@@ -10,6 +10,23 @@ in the release notes and/or placed into 
 
 All ports committers are allowed to commit to this file.
 
+20160628:
+AUTHOR: mat@FreeBSD.org
+
+  USEify USES=php.
+
+  The following variables have been folded into arguments:
+
+  - USE_PHPIZE -> USES=php:phpize
+  - USE_PHPEXT -> USES=php:ext
+  - USE_ZENDEXT -> USES=php:zend
+  - USE_PHP_BUILD -> USES=php:build
+  - WANT_PHP_CLI -> USES=php:cli
+  - WANT_PHP_CGI -> USES=php:cgi
+  - WANT_PHP_MOD -> USES=php:mod
+  - WANT_PHP_WEB -> USES=php:web
+  - WANT_PHP_EMB -> USES=php:embed
+
 20160627:
 AUTHOR: mat@FreeBSD.org
 

Modified: head/Mk/Uses/php.mk
==============================================================================
--- head/Mk/Uses/php.mk	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/Mk/Uses/php.mk	Tue Jun 28 13:57:37 2016	(r417717)
@@ -4,7 +4,17 @@
 #
 # Feature:	php
 # Usage:	USES=php
-# Valid ARGS:	(none)
+# Valid ARGS:	(none), phpize, ext, zend, build, cli, cgi, mod, web, embed
+#
+#	- phpize   : Use to build a PHP extension.
+#	- ext      : Use to build, install and register a PHP extension.
+#	- zend     : Use to build, install and register a Zend extension.
+#	- build    : Set PHP also as a build dependency.
+#	- cli      : Want the CLI version of PHP.
+#	- cgi      : Want the CGI version of PHP.
+#	- mod      : Want the Apache Module for PHP.
+#	- web      : Want the Apache Module or the CGI version of PHP.
+#	- embed    : Want the embedded library version of PHP.
 #
 # If the port requires a predefined set of PHP extensions, they can be
 # listed in this way:
@@ -15,15 +25,6 @@
 #
 # DEFAULT_PHP_VER=N - Use PHP version N if PHP is not yet installed.
 # IGNORE_WITH_PHP=N - The port doesn't work with PHP version N.
-# USE_PHPIZE=yes    - Use to build a PHP extension.
-# USE_PHPEXT=yes    - Use to build, install and register a PHP extension.
-# USE_ZENDEXT=yes   - Use to build, install and register a Zend extension.
-# USE_PHP_BUILD=yes - Set PHP also as a build dependency.
-# WANT_PHP_CLI=yes  - Want the CLI version of PHP.
-# WANT_PHP_CGI=yes  - Want the CGI version of PHP.
-# WANT_PHP_MOD=yes  - Want the Apache Module for PHP.
-# WANT_PHP_WEB=yes  - Want the Apache Module or the CGI version of PHP.
-# WANT_PHP_EMB=yes  - Want the embedded library version of PHP.
 #
 # You may combine multiple WANT_PHP_* knobs.
 # Don't specify any WANT_PHP_* knob if your port will work with every PHP SAPI.
@@ -43,6 +44,44 @@ _INCLUDE_USES_PHP_MK=	yes
 WARNING+=	"DEFAULT_PHP_VER is defined, consider using DEFAULT_VERSIONS=php=${DEFAULT_PHP_VER} instead"
 .  endif
 
+.  if defined(USE_PHPIZE) && empty(php_ARGS:Mphpize)
+php_ARGS+=	phpize
+.  endif
+.  if defined(USE_PHPEXT) && empty(php_ARGS:Mext)
+php_ARGS+=	ext
+.  endif
+.  if defined(USE_ZENDEXT) && empty(php_ARGS:Mzend)
+php_ARGS+=	zend
+.  endif
+.  if defined(USE_PHP_BUILD) && empty(php_ARGS:Mbuild)
+php_ARGS+=	build
+.  endif
+.  if defined(WANT_PHP_CLI) && empty(php_ARGS:Mcli)
+php_ARGS+=	cli
+.  endif
+.  if defined(WANT_PHP_CGI) && empty(php_ARGS:Mcgi)
+php_ARGS+=	cgi
+.  endif
+.  if defined(WANT_PHP_MOD) && empty(php_ARGS:Mmod)
+php_ARGS+=	mod
+.  endif
+.  if defined(WANT_PHP_WEB) && empty(php_ARGS:Mweb)
+php_ARGS+=	web
+.  endif
+.  if defined(WANT_PHP_EMB) && empty(php_ARGS:Membed)
+php_ARGS+=	embed
+.  endif
+
+.  if ${php_ARGS:Mbuild} && ( ${php_ARGS:Mphpize} || ${php_ARGS:Mext} || ${php_ARGS:Mzend} )
+DEV_WARNING+=	"USES=php:build is included in USES=php:phpize, USES=php:ext, and USES=php:zend, so it is not needed"
+.  endif
+.  if ${php_ARGS:Mphpize} && ( ${php_ARGS:Mext} || ${php_ARGS:Mzend} )
+DEV_WARNING+=	"USES=php:phpize is included in USES=php:ext and USES=php:zend, so it is not needed"
+.  endif
+.  if ${php_ARGS:Mext} && ${php_ARGS:Mzend}
+DEV_WARNING+=	"USES=php:ext is included in USES=php:zend, so it is not needed"
+.  endif
+
 PHPBASE?=	${LOCALBASE}
 .  if exists(${PHPBASE}/etc/php.conf)
 .include "${PHPBASE}/etc/php.conf"
@@ -98,16 +137,16 @@ IGNORE=		cannot be installed: doesn't wo
 .    endfor
 .  endif
 
-.  if defined(WANT_PHP_WEB)
-.    if defined(WANT_PHP_CGI) || defined(WANT_PHP_MOD)
+.  if ${php_ARGS:Mweb}
+.    if ${php_ARGS:Mcgi} || ${php_ARGS:Mmod}
 check-makevars::
-		@${ECHO_CMD} "If you define WANT_PHP_WEB you cannot set also WANT_PHP_CGI"
-		@${ECHO_CMD} "or WANT_PHP_MOD. Use only one of them."
+		@${ECHO_CMD} "If you use :web you cannot also use :cgi"
+		@${ECHO_CMD} "or :mod. Use only one of them."
 		@${FALSE}
 .    endif
 .  endif
 
-.  if defined(WANT_PHP_CGI)
+.  if ${php_ARGS:Mcgi}
 .    if defined(PHP_VERSION) && ${PHP_SAPI:Mcgi} == "" && ${PHP_SAPI:Mfpm} == ""
 check-makevars::
 		@${ECHO_CMD} "This port requires the CGI version of PHP, but you have already"
@@ -116,7 +155,7 @@ check-makevars::
 .    endif
 .  endif
 
-.  if defined(WANT_PHP_CLI)
+.  if ${php_ARGS:Mcli}
 .    if defined(PHP_VERSION) && ${PHP_SAPI:Mcli} == ""
 check-makevars::
 		@${ECHO_CMD} "This port requires the CLI version of PHP, but you have already"
@@ -125,7 +164,7 @@ check-makevars::
 .    endif
 .  endif
 
-.  if defined(WANT_PHP_EMB)
+.  if ${php_ARGS:Membed}
 .    if defined(PHP_VERSION) && ${PHP_SAPI:Membed} == ""
 check-makevars::
 		@${ECHO_CMD} "This port requires the embedded library version of PHP, but you have already"
@@ -137,11 +176,11 @@ check-makevars::
 PHP_PORT?=	lang/php${PHP_VER}
 MOD_PHP_PORT?=	www/mod_php${PHP_VER}
 
-.  if defined(USE_PHP_BUILD)
+.  if ${php_ARGS:Mbuild}
 BUILD_DEPENDS+=	${PHPBASE}/include/php/main/php.h:${PHP_PORT}
 .  endif
 RUN_DEPENDS+=	${PHPBASE}/include/php/main/php.h:${PHP_PORT}
-.  if defined(WANT_PHP_MOD) || (defined(WANT_PHP_WEB) && defined(PHP_VERSION) && ${PHP_SAPI:Mcgi} == "" && ${PHP_SAPI:Mfpm} == "")
+.  if  ${php_ARGS:Mmod} || (${php_ARGS:Mweb} && defined(PHP_VERSION) && ${PHP_SAPI:Mcgi} == "" && ${PHP_SAPI:Mfpm} == "")
 USE_APACHE_RUN=	22+
 .include "${PORTSDIR}/Mk/bsd.apache.mk"
 RUN_DEPENDS+=	${PHPBASE}/${APACHEMODDIR}/libphp5.so:${MOD_PHP_PORT}
@@ -150,7 +189,7 @@ RUN_DEPENDS+=	${PHPBASE}/${APACHEMODDIR}
 PLIST_SUB+=	PHP_EXT_DIR=${PHP_EXT_DIR}
 SUB_LIST+=	PHP_EXT_DIR=${PHP_EXT_DIR}
 
-.  if defined(USE_PHPIZE) || defined(USE_PHPEXT) || defined(USE_ZENDEXT)
+.  if ${php_ARGS:Mphpize} || ${php_ARGS:Mext} || ${php_ARGS:Mzend}
 BUILD_DEPENDS+=	${PHPBASE}/bin/phpize:${PHP_PORT}
 GNU_CONFIGURE=	yes
 USE_AUTOTOOLS+=	autoconf:env
@@ -172,7 +211,7 @@ _USES_POST+=php
 
 _INCLUDE_USES_PHP_POST_MK=yes
 
-.  if (defined(USE_PHPEXT) || defined(USE_ZENDEXT))
+.  if ${php_ARGS:Mext} || ${php_ARGS:Mzend}
 PHP_MODNAME?=	${PORTNAME}
 PHP_HEADER_DIRS?=	""
 
@@ -206,7 +245,7 @@ add-plist-phpext:
 		>> ${TMPPLIST}
 	@${ECHO_CMD} "@dir etc/php" \
 		>> ${TMPPLIST}
-.    if defined(USE_ZENDEXT)
+.    if ${php_ARGS:Mzend}
 	@${ECHO_CMD} "@exec echo zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so >> %D/etc/php/extensions.ini" \
 		>> ${TMPPLIST}
 .    else
@@ -215,7 +254,7 @@ add-plist-phpext:
 .    endif
 	@${ECHO_CMD} "@unexec cp %D/etc/php/extensions.ini %D/etc/php/extensions.ini.orig" \
 		>> ${TMPPLIST}
-.    if defined(USE_ZENDEXT)
+.    if ${php_ARGS:Mzend}
 	@${ECHO_CMD} "@unexec grep -v zend_extension=%D/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}\\\.so %D/etc/php/extensions.ini.orig > %D/etc/php/extensions.ini || true" \
 		>> ${TMPPLIST}
 .    else
@@ -235,7 +274,7 @@ php-ini:
 	@${ECHO_CMD} "The following line has been added to your ${PREFIX}/etc/php/extensions.ini"
 	@${ECHO_CMD} "configuration file to automatically load the installed extension:"
 	@${ECHO_CMD} ""
-.    if defined(USE_ZENDEXT)
+.    if ${php_ARGS:Mzend}
 	@${ECHO_CMD} "zend_extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/${PHP_MODNAME}.so"
 .    else
 	@${ECHO_CMD} "extension=${PHP_MODNAME}.so"
@@ -245,7 +284,7 @@ php-ini:
 .  endif
 
 # Extensions
-.  if ${USE_PHP:tl} != "yes"
+.  if defined(USE_PHP) && ${USE_PHP:tl} != "yes"
 # non-version specific components
 _USE_PHP_ALL=	apc bcmath bitset bz2 calendar ctype curl dba dom \
 		exif fileinfo filter ftp gd gettext gmp \
@@ -297,7 +336,6 @@ ldap_DEPENDS=	net/php${PHP_VER}-ldap
 mbstring_DEPENDS=	converters/php${PHP_VER}-mbstring
 mcrypt_DEPENDS=	security/php${PHP_VER}-mcrypt
 memcache_DEPENDS=	databases/pecl-memcache
-mhash_DEPENDS=	security/php${PHP_VER}-mhash
 mssql_DEPENDS=	databases/php${PHP_VER}-mssql
 mysql_DEPENDS=	databases/php${PHP_VER}-mysql
 mysqli_DEPENDS=	databases/php${PHP_VER}-mysqli
@@ -349,19 +387,14 @@ zlib_DEPENDS=	archivers/php${PHP_VER}-zl
 .    for extension in ${USE_PHP}
 .      if ${_USE_PHP_VER${PHP_VER}:M${extension}} != ""
 .        if ${PHP_EXT_INC:M${extension}} == ""
-.          if defined(USE_PHP_BUILD)
+.          if ${php_ARGS:Mbuild}
 BUILD_DEPENDS+=	${PHPBASE}/lib/php/${PHP_EXT_DIR}/${extension}.so:${${extension}_DEPENDS}
 .          endif
 RUN_DEPENDS+=	${PHPBASE}/lib/php/${PHP_EXT_DIR}/${extension}.so:${${extension}_DEPENDS}
 .        endif
 .      else
 ext=		${extension}
-.        if ${ext} == "mhash"
-.          if defined(USE_PHP_BUILD)
-BUILD_DEPENDS+=	${PHPBASE}/lib/php/${PHP_EXT_DIR}/hash.so:${hash_DEPENDS}
-.          endif
-RUN_DEPENDS+=	${PHPBASE}/lib/php/${PHP_EXT_DIR}/hash.so:${hash_DEPENDS}
-.        elif ${ext:tl} != "yes"
+.        if ${ext:tl} != "yes"
 check-makevars::
 			@${ECHO_CMD} "Unknown extension ${extension} for PHP ${PHP_VER}."
 			@${FALSE}

Modified: head/Mk/bsd.sanity.mk
==============================================================================
--- head/Mk/bsd.sanity.mk	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/Mk/bsd.sanity.mk	Tue Jun 28 13:57:37 2016	(r417717)
@@ -178,7 +178,10 @@ SANITY_UNSUPPORTED=	USE_OPENAL USE_FAM U
 		USE_PYTHON_PREFIX USE_BZIP2 USE_XZ USE_PGSQL NEED_ROOT \
 		UNIQUENAME LATEST_LINK USE_SQLITE USE_FIREBIRD
 SANITY_DEPRECATED=	PYTHON_PKGNAMESUFFIX USE_AUTOTOOLS PLIST_DIRSTRY \
-			USE_BDB USE_MYSQL WANT_MYSQL_VER USE_OPENSSL
+			USE_BDB USE_MYSQL WANT_MYSQL_VER USE_OPENSSL \
+			USE_PHPIZE USE_PHPEXT USE_ZENDEXT USE_PHP_BUILD \
+			WANT_PHP_CLI WANT_PHP_CGI WANT_PHP_MOD WANT_PHP_WEB \
+			WANT_PHP_EMB
 SANITY_NOTNEEDED=	WX_UNICODE
 
 USE_AUTOTOOLS_ALT=	USES=autoreconf and GNU_CONFIGURE=yes
@@ -223,6 +226,15 @@ USE_BDB_ALT=		USES=bdb:${USE_BDB}
 USE_MYSQL_ALT=		USES=mysql:${USE_MYSQL}
 WANT_MYSQL_VER_ALT=	USES=mysql:${WANT_MYSQL_VER}
 USE_OPENSSL_ALT=	USES=ssl
+USE_PHPIZE_ALT=		USES=php:phpize
+USE_PHPEXT_ALT=		USES=php:ext
+USE_ZENDEXT_ALT=	USES=php:zend
+USE_PHP_BUILD_ALT=	USES=php:build
+WANT_PHP_CLI_ALT=	USES=php:cli
+WANT_PHP_CGI_ALT=	USES=php:cgi
+WANT_PHP_MOD_ALT=	USES=php:mod
+WANT_PHP_WEB_ALT=	USES=php:web
+WANT_PHP_EMB_ALT=	USES=php:embed
 
 .for a in ${SANITY_DEPRECATED}
 .if defined(${a})

Modified: head/dns/pear-Net_DNS/Makefile
==============================================================================
--- head/dns/pear-Net_DNS/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/dns/pear-Net_DNS/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -10,7 +10,7 @@ MAINTAINER=	miwi@FreeBSD.org
 COMMENT=	Resolver library used to communicate with a DNS server
 
 PORTSCOUT=	skipv:1.00b2,1.00b1
-USE_PHP=	mhash
+USE_PHP=	hash
 USES=	pear
 
 .include <bsd.port.mk>

Modified: head/mail/squirrelmail/Makefile
==============================================================================
--- head/mail/squirrelmail/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/mail/squirrelmail/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -19,7 +19,7 @@ BROKEN_powerpc64=	Does not build
 # patches, but the only guaranteed compatibility is with php 5.3.
 # If you encounter problems, downgrade to php 5.3.
 
-USE_PHP=	session mhash gettext mbstring pcre openssl xml
+USE_PHP=	session hash gettext mbstring pcre openssl xml
 WANT_PHP_WEB=	yes
 
 USES=		cpe gettext perl5 tar:bzip2

Modified: head/net/self-service-password/Makefile
==============================================================================
--- head/net/self-service-password/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/net/self-service-password/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -18,7 +18,7 @@ BROKEN_powerpc64=	Does not build
 NO_BUILD=	yes
 NO_ARCH=	yes
 
-USE_PHP=	ldap openssl session hash mhash mcrypt mbstring filter
+USE_PHP=	ldap openssl session hash hash mcrypt mbstring filter
 
 WANT_PHP_WEB=	yes
 

Modified: head/security/cryptstring/Makefile
==============================================================================
--- head/security/cryptstring/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/security/cryptstring/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -16,7 +16,7 @@ EXPIRATION_DATE=	2016-07-04
 LICENSE=	BSD2CLAUSE
 
 NO_BUILD=	yes
-USE_PHP=	mcrypt mhash
+USE_PHP=	mcrypt hash
 
 do-install:
 	${MKDIR} ${STAGEDIR}${DATADIR}

Modified: head/security/pear-Crypt_CHAP/Makefile
==============================================================================
--- head/security/pear-Crypt_CHAP/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/security/pear-Crypt_CHAP/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -9,6 +9,6 @@ MAINTAINER=	miwi@FreeBSD.org
 COMMENT=	PEAR class for generating CHAP packets
 
 USES=	pear
-USE_PHP=	mcrypt mhash
+USE_PHP=	mcrypt hash
 
 .include <bsd.port.mk>

Modified: head/security/pear-File_SMBPasswd/Makefile
==============================================================================
--- head/security/pear-File_SMBPasswd/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/security/pear-File_SMBPasswd/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -12,6 +12,6 @@ BUILD_DEPENDS=	${PEARDIR}/Crypt/CHAP.php
 RUN_DEPENDS=	${PEARDIR}/Crypt/CHAP.php:security/pear-Crypt_CHAP
 
 USES=	pear
-USE_PHP=	mhash
+USE_PHP=	hash
 
 .include <bsd.port.mk>

Modified: head/security/pear-Horde_Crypt_Blowfish/Makefile
==============================================================================
--- head/security/pear-Horde_Crypt_Blowfish/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/security/pear-Horde_Crypt_Blowfish/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -17,7 +17,7 @@ MHASH_DESC=	Depend on mhash PHP extensio
 OPENSSL_DESC=	Depend on OpenSSL PHP extension
 
 USES=	horde
-MHASH_USE=	PHP=mhash
+MHASH_USE=	PHP=hash
 OPENSSL_USE=	PHP=openssl
 
 .include <bsd.port.mk>

Modified: head/sysutils/gosa/Makefile
==============================================================================
--- head/sysutils/gosa/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/sysutils/gosa/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -19,7 +19,7 @@ RUN_DEPENDS=	p5-Crypt-SmbHash>=0.12:secu
 		pecl-imagick>=2.2.2:graphics/pecl-imagick
 
 USES=		tar:bzip2
-USE_PHP=	gettext iconv imap ldap mbstring mhash mysql pcre posix \
+USE_PHP=	gettext iconv imap ldap mbstring hash mysql pcre posix \
 		session spl xml zlib
 
 NO_BUILD=	yes

Modified: head/www/thundercache/Makefile
==============================================================================
--- head/www/thundercache/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/www/thundercache/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -53,7 +53,7 @@ WANT_PGSQL=	server
 .endif
 
 .if ${PORT_OPTIONS:MPHP}
-USE_PHP+=	curl pcre bcmath pdo mcrypt mhash session
+USE_PHP+=	curl pcre bcmath pdo mcrypt hash session
 .  if ${PORT_OPTIONS:MPGSQL}
 USE_PHP+=	pdo_pgsql pgsql
 .  endif

Modified: head/www/thundersnarf/Makefile
==============================================================================
--- head/www/thundersnarf/Makefile	Tue Jun 28 13:46:21 2016	(r417716)
+++ head/www/thundersnarf/Makefile	Tue Jun 28 13:57:37 2016	(r417717)
@@ -36,7 +36,7 @@ WANT_PGSQL=	server
 .endif
 
 .if ${PORT_OPTIONS:MPHP}
-USE_PHP+=	curl pcre bcmath pdo mcrypt mhash session pgsql spl dom xmlrpc ctype openssl simplexml soap json
+USE_PHP+=	curl pcre bcmath pdo mcrypt hash session pgsql spl dom xmlrpc ctype openssl simplexml soap json
 .  if ${PORT_OPTIONS:MPGSQL}
 USE_PHP+=	pdo_pgsql pgsql
 .  endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606281357.u5SDvcpC090474>