From owner-svn-ports-head@FreeBSD.ORG Sat May 2 19:08:45 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4CDE194F; Sat, 2 May 2015 19:08:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 215D4189D; Sat, 2 May 2015 19:08:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t42J8jjt037017; Sat, 2 May 2015 19:08:45 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t42J8idv037014; Sat, 2 May 2015 19:08:44 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201505021908.t42J8idv037014@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sat, 2 May 2015 19:08:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385208 - in head/lang: php5 php55 php56 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: Sat, 02 May 2015 19:08:45 -0000 Author: sbruno Date: Sat May 2 19:08:43 2015 New Revision: 385208 URL: https://svnweb.freebsd.org/changeset/ports/385208 Log: Disable FPM on mips/mips64 due to lack of ASM implementations for these architectures. PR: 197128 Modified: head/lang/php5/Makefile head/lang/php55/Makefile head/lang/php56/Makefile Modified: head/lang/php5/Makefile ============================================================================== --- head/lang/php5/Makefile Sat May 2 19:04:09 2015 (r385207) +++ head/lang/php5/Makefile Sat May 2 19:08:43 2015 (r385208) @@ -39,6 +39,9 @@ USE_GNOME= libxml2 OPTIONS_DEFINE+=CLI CGI FPM EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR ZTS OPTIONS_DEFAULT=CLI CGI FPM IPV6 LINKTHR +# Bug 197128: No ASM code for MIPS/MIPS64, disable FPM +OPTIONS_EXCLUDE_mips=FPM +OPTIONS_EXCLUDE_mips64=FPM OPTIONS_SUB= yes CLI_DESC= Build CLI version Modified: head/lang/php55/Makefile ============================================================================== --- head/lang/php55/Makefile Sat May 2 19:04:09 2015 (r385207) +++ head/lang/php55/Makefile Sat May 2 19:08:43 2015 (r385208) @@ -39,6 +39,9 @@ USE_GNOME= libxml2 OPTIONS_DEFINE+=CLI CGI FPM EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR ZTS OPTIONS_DEFAULT=CLI CGI FPM IPV6 LINKTHR +# Bug 197128: No ASM code for MIPS/MIPS64, disable FPM +OPTIONS_EXCLUDE_mips=FPM +OPTIONS_EXCLUDE_mips64=FPM OPTIONS_SUB= yes CLI_DESC= Build CLI version Modified: head/lang/php56/Makefile ============================================================================== --- head/lang/php56/Makefile Sat May 2 19:04:09 2015 (r385207) +++ head/lang/php56/Makefile Sat May 2 19:08:43 2015 (r385208) @@ -39,6 +39,9 @@ USE_GNOME= libxml2 OPTIONS_DEFINE+=CLI CGI FPM EMBED PHPDBG DEBUG DTRACE IPV6 MAILHEAD LINKTHR ZTS OPTIONS_DEFAULT=CLI CGI FPM IPV6 LINKTHR +# Bug 197128: No ASM code for MIPS/MIPS64, disable FPM +OPTIONS_EXCLUDE_mips=FPM +OPTIONS_EXCLUDE_mips64=FPM OPTIONS_SUB= yes CLI_DESC= Build CLI version