From owner-svn-ports-all@freebsd.org Sun Feb 19 20:25:59 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7BE24CE5830; Sun, 19 Feb 2017 20:25:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48B7814D6; Sun, 19 Feb 2017 20:25:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1JKPwKR076331; Sun, 19 Feb 2017 20:25:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1JKPwjO076330; Sun, 19 Feb 2017 20:25:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201702192025.v1JKPwjO076330@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Feb 2017 20:25:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434414 - head/Mk/Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2017 20:25:59 -0000 Author: sunpoet Date: Sun Feb 19 20:25:58 2017 New Revision: 434414 URL: https://svnweb.freebsd.org/changeset/ports/434414 Log: Add USE_PHP=memcached Modified: head/Mk/Uses/php.mk Modified: head/Mk/Uses/php.mk ============================================================================== --- head/Mk/Uses/php.mk Sun Feb 19 19:52:10 2017 (r434413) +++ head/Mk/Uses/php.mk Sun Feb 19 20:25:58 2017 (r434414) @@ -293,7 +293,7 @@ add-plist-phpext: _USE_PHP_ALL= bcmath bitset bz2 calendar ctype curl dba dom \ enchant exif fileinfo filter ftp gd gettext gmp \ hash iconv igbinary imap interbase intl json ldap mbstring mcrypt \ - memcache mysqli odbc opcache \ + memcache memcached mysqli odbc opcache \ openssl pcntl pcre pdf pdo pdo_dblib pdo_firebird pdo_mysql \ pdo_odbc pdo_pgsql pdo_sqlite phar pgsql posix \ pspell radius readline recode redis session shmop simplexml snmp soap\ @@ -344,6 +344,11 @@ memcache_DEPENDS= databases/php${PHP_VER . else memcache_DEPENDS= databases/pecl-memcache . endif +. if ${PHP_VER} >= 70 +memcached_DEPENDS= databases/pecl-memcached +. else +memcached_DEPENDS= databases/pecl-memcached2 +. endif mssql_DEPENDS= databases/php${PHP_VER}-mssql mysql_DEPENDS= databases/php${PHP_VER}-mysql mysqli_DEPENDS= databases/php${PHP_VER}-mysqli