[vlc-commits] contrib: x265: disable package not usable on Winstore builds

Steve Lhomme git at videolan.org
Wed Mar 20 10:50:25 CET 2019


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu Mar  7 12:35:16 2019 +0100| [4181d859cbfee5d83fca28642090b278a3b14e3e] | committer: Steve Lhomme

contrib: x265: disable package not usable on Winstore builds

uses LoadLibraryA which is not available
uses GetNumaNodeProcessorMaskEx, SetThreadGroupAffinity, GetNumaHighestNodeNumber
which are not available
uses GetStdHandle (which is available since 16299)
uses GetConsoleMode, WriteConsoleW (which are available since 17134)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4181d859cbfee5d83fca28642090b278a3b14e3e
---

 contrib/src/x265/rules.mak | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/contrib/src/x265/rules.mak b/contrib/src/x265/rules.mak
index 0b0fce3187..308eb4884d 100644
--- a/contrib/src/x265/rules.mak
+++ b/contrib/src/x265/rules.mak
@@ -6,9 +6,11 @@ X265_SNAPURL := https://bitbucket.org/multicoreware/x265/get/$(X265_VERSION).tar
 
 ifdef BUILD_ENCODERS
 ifdef GPL
+ifndef HAVE_WINSTORE
 PKGS += x265
 endif
 endif
+endif
 
 ifeq ($(call need_pkg,"x265 >= 0.6"),)
 PKGS_FOUND += x265



More information about the vlc-commits mailing list