svn commit: r452091 - in head/multimedia/vapoursynth: . files
Jan Beich
jbeich at FreeBSD.org
Sat Oct 14 22:13:23 UTC 2017
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 at 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 <sys/auxv.h>
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
More information about the svn-ports-head
mailing list