[vlc-commits] contrib: gettext: disable package not usable on Winstore builds

Steve Lhomme git at videolan.org
Wed Mar 20 10:50:16 CET 2019


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri Mar  8 15:44:44 2019 +0100| [a6578b7d63a801fd725466dedab55218292aa769] | committer: Steve Lhomme

contrib: gettext: disable package not usable on Winstore builds

uses GetLocaleInfo (which is now available)
uses EnumSystemLocales which is not available (but EnumSystemLocalesEx is)
uses EnumResourceLanguages which is not available

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a6578b7d63a801fd725466dedab55218292aa769
---

 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 2684b8ff5e..8e8dbbebaa 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



More information about the vlc-commits mailing list