From owner-svn-ports-all@freebsd.org Tue Jul 18 11:49:10 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 1BA3DCFF62F; Tue, 18 Jul 2017 11:49:10 +0000 (UTC) (envelope-from jbeich@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 D9B016B519; Tue, 18 Jul 2017 11:49:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6IBn9sG015230; Tue, 18 Jul 2017 11:49:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6IBn9SA015229; Tue, 18 Jul 2017 11:49:09 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707181149.v6IBn9SA015229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jul 2017 11:49:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r446140 - branches/2017Q3/graphics/vapoursynth-fmtconv X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/graphics/vapoursynth-fmtconv X-SVN-Commit-Revision: 446140 X-SVN-Commit-Repository: ports 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: Tue, 18 Jul 2017 11:49:10 -0000 Author: jbeich Date: Tue Jul 18 11:49:08 2017 New Revision: 446140 URL: https://svnweb.freebsd.org/changeset/ports/446140 Log: MFH: r446139 graphics/vapoursynth-fmtconv: disable on non-x86 ../../src/fmtcl/MatrixProc.cpp:362:18: error: out-of-line definition of 'setup_fnc_sse' does not match any declaration in 'fmtcl::MatrixProc' void MatrixProc::setup_fnc_sse (bool int_proc_flag, SplFmt src_fmt, int src_bits, SplFmt dst_fmt, int dst_bits, bool single_plane_flag) ^~~~~~~~~~~~~ ../../src/fmtcl/MatrixProc.cpp:368:17: error: no member named 'process_1_flt_sse' in 'fmtcl::MatrixProc'; did you mean '::fmtcl::MatrixProc::process_1_flt_cpp'? _proc_ptr = &ThisType::process_1_flt_sse; ^~~~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout (aarch64) Approved by: ports-secteam blanket Modified: branches/2017Q3/graphics/vapoursynth-fmtconv/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/graphics/vapoursynth-fmtconv/Makefile ============================================================================== --- branches/2017Q3/graphics/vapoursynth-fmtconv/Makefile Tue Jul 18 11:47:09 2017 (r446139) +++ branches/2017Q3/graphics/vapoursynth-fmtconv/Makefile Tue Jul 18 11:49:08 2017 (r446140) @@ -12,6 +12,9 @@ LICENSE= WTFPL BUILD_DEPENDS= ${LOCALBASE}/include/vapoursynth/VapourSynth.h:multimedia/vapoursynth +ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS_REASON= https://github.com/EleonoreMizo/fmtconv/issues/8 + USE_GITHUB= yes GH_ACCOUNT= EleonoreMizo