vlc | branch: master | Steve Lhomme <[email protected]> | Fri Mar 8 15:46:11 2019 +0100| [f16d3765b4d0639736c9b6abdeacbdf1792c6173] | committer: Steve Lhomme
contrib: cddb: do not depend on getext on Winstore builds It is not available and not needed > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f16d3765b4d0639736c9b6abdeacbdf1792c6173 --- contrib/src/cddb/rules.mak | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contrib/src/cddb/rules.mak b/contrib/src/cddb/rules.mak index e317152812..adb6c5e310 100644 --- a/contrib/src/cddb/rules.mak +++ b/contrib/src/cddb/rules.mak @@ -27,7 +27,10 @@ ifdef HAVE_WIN32 endif $(MOVE) -DEPS_cddb = regex $(DEPS_regex) gettext $(DEPS_gettext) +DEPS_cddb = regex $(DEPS_regex) +ifndef HAVE_WINSTORE +DEPS_cddb += gettext $(DEPS_gettext) +endif .cddb: cddb $(RECONF) _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
