[vlc-commits] contrib: remove ZCAT, BZCAT and XZCAT

Rémi Denis-Courmont git at videolan.org
Tue Feb 21 18:41:25 CET 2017


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Feb 21 19:40:15 2017 +0200| [a2b27bc0b4ae1451a6e2be40530177b21e485e0f] | committer: Rémi Denis-Courmont

contrib: remove ZCAT, BZCAT and XZCAT

This is no longer used, and 100% of earlier uses were buggy.

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

 contrib/src/main.mak | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git a/contrib/src/main.mak b/contrib/src/main.mak
index adef0cc..1caef68 100644
--- a/contrib/src/main.mak
+++ b/contrib/src/main.mak
@@ -246,32 +246,12 @@ endif
 download_pkg = $(call download,$(CONTRIB_VIDEOLAN)/$(2)/$(lastword $(subst /, ,$(@)))) || \
 	( $(call download,$(1)) && echo "Please upload this package $(lastword $(subst /, ,$(@))) to our FTP" )
 
-ifeq ($(shell which xzcat >/dev/null 2>&1 || echo FAIL),)
-XZCAT = xzcat
-else
-XZCAT ?= $(error xz and lzma client not found!)
-endif
-
 ifeq ($(shell which xz >/dev/null 2>&1 || echo FAIL),)
 XZ = xz
 else
 XZ ?= $(error XZ (LZMA) compressor not found!)
 endif
 
-ifeq ($(shell which bzcat >/dev/null 2>&1 || echo FAIL),)
-BZCAT = bzcat
-else
-BZCAT ?= $(error Bunzip2 client (bzcat) not found!)
-endif
-
-ifeq ($(shell gzcat --version >/dev/null 2>&1 || echo FAIL),)
-ZCAT = gzcat
-else ifeq ($(shell zcat --version >/dev/null 2>&1 || echo FAIL),)
-ZCAT = zcat
-else
-ZCAT ?= $(error Gunzip client (zcat) not found!)
-endif
-
 ifeq ($(shell sha512sum --version >/dev/null 2>&1 || echo FAIL),)
 SHA512SUM = sha512sum --check
 else ifeq ($(shell shasum --version >/dev/null 2>&1 || echo FAIL),)



More information about the vlc-commits mailing list