[vlc-commits] contrib: bluray: disable package not usable on Winstore builds
Steve Lhomme
git at videolan.org
Wed Mar 20 10:50:18 CET 2019
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Mar 6 11:05:27 2019 +0100| [7f0cd47d320f0e9d03e67511ac4d143ee8b9cd69] | committer: Steve Lhomme
contrib: bluray: disable package not usable on Winstore builds
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
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7f0cd47d320f0e9d03e67511ac4d143ee8b9cd69
---
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 09ad2f43f6..0e07128c45 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
More information about the vlc-commits
mailing list