mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
multimedia/vapoursynth: update to R44
Changes: http://www.vapoursynth.com/2018/07/r44-speeding-up-slightly/ Changes: https://github.com/vapoursynth/vapoursynth/blob/R44/ChangeLog
This commit is contained in:
parent
749a96e1db
commit
8b2af15e54
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=474710
@ -1,8 +1,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= vapoursynth
|
||||
PORTVERSION= R43
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= R44
|
||||
CATEGORIES= multimedia
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1517427600
|
||||
SHA256 (vapoursynth-vapoursynth-R43_GH0.tar.gz) = 5c80d583f6891f4f5840edf09bc207c2e71653786b07606fdb4a164fd67470c2
|
||||
SIZE (vapoursynth-vapoursynth-R43_GH0.tar.gz) = 590554
|
||||
TIMESTAMP = 1531494777
|
||||
SHA256 (vapoursynth-vapoursynth-R44_GH0.tar.gz) = 3459aa903c42b2f87a634ee705fcc3dd251729bd179e8ab4684a50bd7415930a
|
||||
SIZE (vapoursynth-vapoursynth-R44_GH0.tar.gz) = 595344
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- src/core/cpufeatures.c.orig 2016-02-02 16:12:42 UTC
|
||||
--- src/core/cpufeatures.c.orig 2018-07-13 15:12:57 UTC
|
||||
+++ src/core/cpufeatures.c
|
||||
@@ -60,7 +60,7 @@ void getCPUFeatures(CPUFeatures *cpuFeat
|
||||
@@ -69,7 +69,7 @@ void getCPUFeatures(CPUFeatures *cpuFeatures) {
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -13,21 +13,21 @@
|
||||
#endif
|
||||
}
|
||||
#else
|
||||
-#error Do not know how to get CPU features.
|
||||
-#warning "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
|
||||
--- src/core/cpufeatures.h.orig 2018-07-13 15:12:57 UTC
|
||||
+++ src/core/cpufeatures.h
|
||||
@@ -51,8 +51,6 @@ typedef struct CPUFeatures {
|
||||
@@ -59,8 +59,6 @@ typedef struct CPUFeatures {
|
||||
char efp_double;
|
||||
char dfp;
|
||||
char vsx;
|
||||
-#else
|
||||
-#error No VS_TARGET_CPU_* defined/handled!
|
||||
-#warning "No VS_TARGET_CPU_* defined/handled!"
|
||||
#endif
|
||||
} CPUFeatures;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user