Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Jun 2019 04:07:20 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r503701 - in head/multimedia/vapoursynth: . files
Message-ID:  <201906080407.x5847KQK007752@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Sat Jun  8 04:07:19 2019
New Revision: 503701
URL: https://svnweb.freebsd.org/changeset/ports/503701

Log:
  multimedia/vapoursynth: unbreak after r503610
  
  src/core/vsresize.cpp:88:20: error: use of undeclared identifier 'ZIMG_CPU_X86_AVX512_SKL'; did you mean 'ZIMG_CPU_X86_AVX512_SKX'?
      { "avx512skl", ZIMG_CPU_X86_AVX512_SKL },
                     ^~~~~~~~~~~~~~~~~~~~~~~
                     ZIMG_CPU_X86_AVX512_SKX
  /usr/local/include/zimg.h:171:2: note: 'ZIMG_CPU_X86_AVX512_SKX' declared here
          ZIMG_CPU_X86_AVX512_SKX = 1011  /**< AVX-512 {F,CD,VL,BW,DQ} (e.g. Skylake-X/SP). */
          ^
  
  Reported by:	pkg-fallout
  Obtained from:	upstream

Added:
  head/multimedia/vapoursynth/files/patch-src_core_vsresize.cpp   (contents, props changed)
Modified:
  head/multimedia/vapoursynth/Makefile   (contents, props changed)

Modified: head/multimedia/vapoursynth/Makefile
==============================================================================
--- head/multimedia/vapoursynth/Makefile	Sat Jun  8 03:13:22 2019	(r503700)
+++ head/multimedia/vapoursynth/Makefile	Sat Jun  8 04:07:19 2019	(r503701)
@@ -2,7 +2,7 @@
 
 PORTNAME=	vapoursynth
 PORTVERSION=	R45.1
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	multimedia
 
 MAINTAINER=	jbeich@FreeBSD.org

Added: head/multimedia/vapoursynth/files/patch-src_core_vsresize.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/vapoursynth/files/patch-src_core_vsresize.cpp	Sat Jun  8 04:07:19 2019	(r503701)
@@ -0,0 +1,11 @@
+--- src/core/vsresize.cpp.orig	2018-10-26 21:11:05 UTC
++++ src/core/vsresize.cpp
+@@ -85,7 +85,7 @@ const std::unordered_map<std::string, zimg_cpu_type_e>
+     { "f16c",      ZIMG_CPU_X86_F16C },
+     { "avx2",      ZIMG_CPU_X86_AVX2 },
+     { "avx512f",   ZIMG_CPU_X86_AVX512F },
+-    { "avx512skl", ZIMG_CPU_X86_AVX512_SKL },
++    { "avx512skx", ZIMG_CPU_X86_AVX512_SKX },
+ #endif
+ };
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906080407.x5847KQK007752>