vlc | branch: master | Steve Lhomme <[email protected]> | 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 _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
