aboutsummaryrefslogtreecommitdiffstats
path: root/community/x265/fix_parsecpuname.patch
diff options
context:
space:
mode:
authorMike Sullivan <mksully22@gmail.com>2018-07-25 14:56:29 +0000
committerRoberto Oliveira <robertoguimaraes8@gmail.com>2018-07-26 17:26:28 +0000
commitdc3bbf798e9bc1f7396f09c2ab195b69bc9d9881 (patch)
tree69470bd887255ffbc4e2f5f076d9ee0a0d8d5a87 /community/x265/fix_parsecpuname.patch
parente76a44c248d87daa3b03e04735e14075521bb1f9 (diff)
downloadaports-dc3bbf798e9bc1f7396f09c2ab195b69bc9d9881.tar.bz2
aports-dc3bbf798e9bc1f7396f09c2ab195b69bc9d9881.tar.xz
community/x265: fix build break on ppc64le parseCpuName invocation
Cherry picked commit from: https://bitbucket.org/multicoreware/x265/commits/4504219210793536d921ee4e0b3058698c630bf4
Diffstat (limited to 'community/x265/fix_parsecpuname.patch')
-rw-r--r--community/x265/fix_parsecpuname.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/community/x265/fix_parsecpuname.patch b/community/x265/fix_parsecpuname.patch
new file mode 100644
index 0000000000..e1d9c9a9d2
--- /dev/null
+++ b/community/x265/fix_parsecpuname.patch
@@ -0,0 +1,11 @@
+--- a/source/common/param.cpp
++++ b/source/common/param.cpp
+@@ -633,7 +633,7 @@
+ if (bValueWasNull)
+ p->cpuid = atobool(value);
+ else
+- p->cpuid = parseCpuName(value, bError);
++ p->cpuid = parseCpuName(value, bError, false);
+ #endif
+ }
+ OPT("fps")