[vlc-devel] [PATCH 05/15] contrib: bluray: disable package not usable on Winstore builds

Steve Lhomme robux4 at ycbcr.xyz
Fri Mar 8 16:19:41 CET 2019


uses SetThreadAffinityMask (which is now available)
uses LoadLibraryExW which should be remapped to another call (or not used at all)
uses GetWindowsDirectoryW which is not available
uses SetDllDirectoryW which is not available
uses RegOpenKeyExW, RegQueryValueExW, RegEnumValueW and RegCloseKey which are not available
uses GetModuleHandleEx which is not available
uses GetDC and ReleaseDC which are not available
uses EnumFontFamiliesExW which is not available
---
 contrib/src/bluray/rules.mak | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/contrib/src/bluray/rules.mak b/contrib/src/bluray/rules.mak
index 09ad2f43f6c..0e07128c456 100644
--- a/contrib/src/bluray/rules.mak
+++ b/contrib/src/bluray/rules.mak
@@ -4,8 +4,10 @@ BLURAY_VERSION := 1.1.0
 BLURAY_URL := $(VIDEOLAN)/libbluray/$(BLURAY_VERSION)/libbluray-$(BLURAY_VERSION).tar.bz2
 
 ifdef BUILD_DISCS
+ifndef HAVE_WINSTORE
 PKGS += bluray
 endif
+endif
 ifeq ($(call need_pkg,"libbluray >= 0.7.0"),)
 PKGS_FOUND += bluray
 endif
-- 
2.17.1



More information about the vlc-devel mailing list