[vlc-commits] contrib: cddb: do not depend on getext on Winstore builds
    Steve Lhomme 
    git at videolan.org
       
    Wed Mar 20 10:50:15 CET 2019
    
    
  
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | 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)
    
    
More information about the vlc-commits
mailing list