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

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


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

contrib: caca: disable package not usable on Winstore builds

uses AllocConsole, GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleMode,
CreateConsoleScreenBuffer, SetConsoleScreenBufferSize, SetConsoleWindowInfo,
SetConsoleActiveScreenBuffer, SetConsoleActiveScreenBuffer, SetConsoleTextAttribute,
SetConsoleTitle, WriteConsoleOutputW, GetNumberOfConsoleInputEvents, ReadConsoleInput
and GetStdHandle (which are now available)

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

 contrib/src/caca/rules.mak | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/contrib/src/caca/rules.mak b/contrib/src/caca/rules.mak
index 2bc78d893e..6369d1ec5c 100644
--- a/contrib/src/caca/rules.mak
+++ b/contrib/src/caca/rules.mak
@@ -3,8 +3,10 @@ CACA_VERSION := 0.99.beta17
 CACA_URL := http://caca.zoy.org/files/libcaca/libcaca-$(CACA_VERSION).tar.gz
 
 ifndef HAVE_LINUX # see VLC Trac 17251
+ifndef HAVE_WINSTORE
 PKGS += caca
 endif
+endif
 ifeq ($(call need_pkg,"caca >= 0.99.beta14"),)
 PKGS_FOUND += caca
 endif



More information about the vlc-commits mailing list