[vlc-devel] [PATCH 13/15] contrib: x265: disable package not usable on Winstore builds
Steve Lhomme
robux4 at ycbcr.xyz
Fri Mar 8 16:19:49 CET 2019
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)
---
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 0b0fce31879..308eb4884d1 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
--
2.17.1
More information about the vlc-devel
mailing list