diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-07-18 19:47:09 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-07-18 19:47:09 +0800 |
commit | e50cd0487ca591f7eeadeaaf7e1cbf22a22e99b5 (patch) | |
tree | 64902663b293250337d710fe4cad7050e4e98c11 /graphics | |
parent | dfb24372e5cf25e176f822fb94bae38bb89bb4ca (diff) | |
download | freebsd-ports-gnome-e50cd0487ca591f7eeadeaaf7e1cbf22a22e99b5.tar.gz freebsd-ports-gnome-e50cd0487ca591f7eeadeaaf7e1cbf22a22e99b5.tar.zst freebsd-ports-gnome-e50cd0487ca591f7eeadeaaf7e1cbf22a22e99b5.zip |
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)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/vapoursynth-fmtconv/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/graphics/vapoursynth-fmtconv/Makefile b/graphics/vapoursynth-fmtconv/Makefile index 10b7b7864e08..11c8b863a6e9 100644 --- a/graphics/vapoursynth-fmtconv/Makefile +++ b/graphics/vapoursynth-fmtconv/Makefile @@ -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 |