From owner-svn-ports-head@freebsd.org Sun May 14 06:52:10 2017 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 9161BD6C234; Sun, 14 May 2017 06:52:10 +0000 (UTC) (envelope-from linimon@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 6177A243; Sun, 14 May 2017 06:52:10 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4E6q9TA083918; Sun, 14 May 2017 06:52:09 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4E6q9pw083917; Sun, 14 May 2017 06:52:09 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201705140652.v4E6q9pw083917@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 14 May 2017 06:52:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440865 - head/databases/soci 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: Sun, 14 May 2017 06:52:10 -0000 Author: linimon Date: Sun May 14 06:52:09 2017 New Revision: 440865 URL: https://svnweb.freebsd.org/changeset/ports/440865 Log: Disable dependency on firebird for tier-2 archs. There is work underway to fix firebird on those archs but it is not complete. This unbreaks several dozen ports on tier-2. PR: 216943 Submitted by: linimon Reviewed by: mat (only this file) Modified: head/databases/soci/Makefile Modified: head/databases/soci/Makefile ============================================================================== --- head/databases/soci/Makefile Sun May 14 06:41:41 2017 (r440864) +++ head/databases/soci/Makefile Sun May 14 06:52:09 2017 (r440865) @@ -25,6 +25,15 @@ BOOST_DESC= Enable support for additiona OPTIONS_DEFAULT=MYSQL PGSQL SQLITE ODBC BOOST FIREBIRD OPTIONS_SUB= yes +# firebird is currently only available on x86. +OPTIONS_EXCLUDE_aarch64= FIREBIRD +OPTIONS_EXCLUDE_armv6= FIREBIRD +OPTIONS_EXCLUDE_mips= FIREBIRD +OPTIONS_EXCLUDE_mips64= FIREBIRD +OPTIONS_EXCLUDE_powerpc= FIREBIRD +OPTIONS_EXCLUDE_powerpc64= FIREBIRD +OPTIONS_EXCLUDE_sparc64= FIREBIRD + MYSQL_USE= MYSQL=yes MYSQL_CMAKE_ON= -DWITH_MYSQL:BOOL=ON MYSQL_CMAKE_OFF= -DWITH_MYSQL:BOOL=OFF