[vlc-devel] [PATCH 07/15] contrib: mfx: disable package not usable on Winstore builds
Steve Lhomme
robux4 at ycbcr.xyz
Fri Mar 8 16:19:43 CET 2019
uses RegOpenKeyExW, RegCloseKey, RegQueryValueExW, RegEnumValueW which are not available
uses LoadLibraryExW instead of LoadLibraryFromApp
There's a newer version of libmfx that doesn't use this anymore, we should update
---
contrib/src/mfx/rules.mak | 2 ++
1 file changed, 2 insertions(+)
diff --git a/contrib/src/mfx/rules.mak b/contrib/src/mfx/rules.mak
index 2b4fbad702c..1a5bba22337 100644
--- a/contrib/src/mfx/rules.mak
+++ b/contrib/src/mfx/rules.mak
@@ -7,8 +7,10 @@ ifeq ($(call need_pkg,"mfx"),)
PKGS_FOUND += mfx
endif
ifdef HAVE_WIN32
+ifndef HAVE_WINSTORE
PKGS += mfx
endif
+endif
$(TARBALLS)/mfx-$(MFX_GITHASH).tar.xz:
$(call download_git,$(mfx_GITURL),,$(MFX_GITHASH))
--
2.17.1
More information about the vlc-devel
mailing list