From owner-svn-ports-head@freebsd.org Sat Oct 14 22:13:23 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 85EABE2DF5C; Sat, 14 Oct 2017 22:13:23 +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 49FAD81F09; Sat, 14 Oct 2017 22:13:23 +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 v9EMDMJA039589; Sat, 14 Oct 2017 22:13:22 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9EMDMOS039587; Sat, 14 Oct 2017 22:13:22 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201710142213.v9EMDMOS039587@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 14 Oct 2017 22:13:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452091 - in head/multimedia/vapoursynth: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/multimedia/vapoursynth: . files X-SVN-Commit-Revision: 452091 X-SVN-Commit-Repository: ports 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: Sat, 14 Oct 2017 22:13:23 -0000 Author: jbeich Date: Sat Oct 14 22:13:21 2017 New Revision: 452091 URL: https://svnweb.freebsd.org/changeset/ports/452091 Log: multimedia/vapoursynth: unbreak runtime on non-x86 vapoursynth.Error: Failed to obtain VapourSynth API pointer. System does not support SSE2 or is the Python module and loaded core library mismatched? Modified: head/multimedia/vapoursynth/Makefile (contents, props changed) head/multimedia/vapoursynth/files/patch-non-x86 (contents, props changed) Modified: head/multimedia/vapoursynth/Makefile ============================================================================== --- head/multimedia/vapoursynth/Makefile Sat Oct 14 21:03:58 2017 (r452090) +++ head/multimedia/vapoursynth/Makefile Sat Oct 14 22:13:21 2017 (r452091) @@ -2,6 +2,7 @@ PORTNAME= vapoursynth PORTVERSION= R39 +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org Modified: head/multimedia/vapoursynth/files/patch-non-x86 ============================================================================== --- head/multimedia/vapoursynth/files/patch-non-x86 Sat Oct 14 21:03:58 2017 (r452090) +++ head/multimedia/vapoursynth/files/patch-non-x86 Sat Oct 14 22:13:21 2017 (r452091) @@ -9,13 +9,15 @@ #include void getCPUFeatures(CPUFeatures *cpuFeatures) { -@@ -89,5 +89,7 @@ void getCPUFeatures(CPUFeatures *cpuFeat +@@ -98,5 +98,9 @@ void getCPUFeatures(CPUFeatures *cpuFeatures) { #endif } #else -#error Do not know how to get CPU features. +void getCPUFeatures(CPUFeatures *cpuFeatures) { + memset(cpuFeatures, 0, sizeof(CPUFeatures)); ++ ++ cpuFeatures->can_run_vs = 1; +} #endif --- src/core/cpufeatures.h.orig 2016-02-02 16:12:42 UTC