From owner-svn-ports-head@freebsd.org Thu Dec 1 13:18:31 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 5B2A6C60A3F; Thu, 1 Dec 2016 13:18:31 +0000 (UTC) (envelope-from swills@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 2AE1A17D1; Thu, 1 Dec 2016 13:18:31 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB1DIU9h034051; Thu, 1 Dec 2016 13:18:30 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB1DIULQ034050; Thu, 1 Dec 2016 13:18:30 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201612011318.uB1DIULQ034050@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 1 Dec 2016 13:18:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427496 - head/lang/php70 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.23 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, 01 Dec 2016 13:18:31 -0000 Author: swills Date: Thu Dec 1 13:18:30 2016 New Revision: 427496 URL: https://svnweb.freebsd.org/changeset/ports/427496 Log: lang/php70: enabled DTRACE option by default where possible Approved by: tz (maintainer) Modified: head/lang/php70/Makefile Modified: head/lang/php70/Makefile ============================================================================== --- head/lang/php70/Makefile Thu Dec 1 13:08:58 2016 (r427495) +++ head/lang/php70/Makefile Thu Dec 1 13:18:30 2016 (r427496) @@ -3,7 +3,7 @@ PORTNAME= php70 PORTVERSION= 7.0.13 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} @@ -37,12 +37,15 @@ CONFIGURE_ARGS+=--with-layout=GNU \ USE_GNOME= libxml2 OPTIONS_DEFINE+=CLI CGI FPM EMBED PHPDBG DEBUG DTRACE IPV6 LINKTHR ZTS -OPTIONS_DEFAULT=CLI CGI FPM LINKTHR +OPTIONS_DEFAULT=CLI CGI FPM LINKTHR DTRACE # Bug 197128: No ASM code for MIPS/MIPS64, disable FPM OPTIONS_EXCLUDE_mips=FPM OPTIONS_EXCLUDE_mips64=FPM OPTIONS_SUB= yes +OPTIONS_EXCLUDE_FreeBSD_9+= DTRACE +OPTIONS_EXCLUDE+= ${OPTIONS_EXCLUDE_${OPSYS}_${OSREL:R}} + CLI_DESC= Build CLI version CGI_DESC= Build CGI version FPM_DESC= Build FPM version