From owner-svn-ports-head@freebsd.org Thu Feb 18 04:01:21 2016 Return-Path: Delivered-To: svn-ports-head@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 CDB4AAAB03D; Thu, 18 Feb 2016 04:01:21 +0000 (UTC) (envelope-from miwi@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 9F0191A25; Thu, 18 Feb 2016 04:01:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1I41KAW094881; Thu, 18 Feb 2016 04:01:20 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1I41KFu094880; Thu, 18 Feb 2016 04:01:20 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201602180401.u1I41KFu094880@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Thu, 18 Feb 2016 04:01:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409086 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Feb 2016 04:01:21 -0000 Author: miwi Date: Thu Feb 18 04:01:20 2016 New Revision: 409086 URL: https://svnweb.freebsd.org/changeset/ports/409086 Log: - Fix index when php70 is default, this fix also IGNORE_WITH_PHP= 70 Modified: head/Mk/bsd.php.mk Modified: head/Mk/bsd.php.mk ============================================================================== --- head/Mk/bsd.php.mk Thu Feb 18 03:29:17 2016 (r409085) +++ head/Mk/bsd.php.mk Thu Feb 18 04:01:20 2016 (r409086) @@ -291,8 +291,11 @@ mcrypt_DEPENDS= security/php${PHP_VER}-m memcache_DEPENDS= databases/pecl-memcache mhash_DEPENDS= security/php${PHP_VER}-mhash mssql_DEPENDS= databases/php${PHP_VER}-mssql +.if ${PHP_VER} == 55 || ${PHP_VER} == 56 mysql_DEPENDS= databases/php${PHP_VER}-mysql +.else mysqli_DEPENDS= databases/php${PHP_VER}-mysqli +.endif ncurses_DEPENDS=devel/php${PHP_VER}-ncurses odbc_DEPENDS= databases/php${PHP_VER}-odbc oci8_DEPENDS= databases/php${PHP_VER}-oci8