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

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


uses GetLocaleInfo (which is now available)
uses EnumSystemLocales which is not available (but EnumSystemLocalesEx is)
uses EnumResourceLanguages which is not available
---
 contrib/src/gettext/rules.mak | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/contrib/src/gettext/rules.mak b/contrib/src/gettext/rules.mak
index 2684b8ff5ef..8e8dbbebaa6 100644
--- a/contrib/src/gettext/rules.mak
+++ b/contrib/src/gettext/rules.mak
@@ -2,7 +2,9 @@
 GETTEXT_VERSION := 0.19.8.1
 GETTEXT_URL := $(GNU)/gettext/gettext-$(GETTEXT_VERSION).tar.gz
 
+ifndef HAVE_WINSTORE
 PKGS += gettext
+endif
 ifneq ($(filter gnu%,$(subst -, ,$(HOST))),)
 # GNU platform should have gettext (?)
 PKGS_FOUND += gettext
-- 
2.17.1



More information about the vlc-devel mailing list