From f6d9bc3a74582bda3cbfd3fcdd27120b63fa2161 Mon Sep 17 00:00:00 2001 From: Niel Nielsen Date: Mon, 19 Mar 2018 22:31:31 +0100 Subject: [PATCH] Update check_features.mk Changed cfg/checks/check_features.mk to enable individual Audio/Video checks by adding proper DISABLE_VI option which takes "0" or "1" for disable/enable video checks/building. --- cfg/checks/check_features.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg/checks/check_features.mk b/cfg/checks/check_features.mk index aa5990f..21ad8e6 100644 --- a/cfg/checks/check_features.mk +++ b/cfg/checks/check_features.mk @@ -13,7 +13,7 @@ ifneq ($(AUDIO), disabled) endif # Check if we want build video support -VIDEO = $(shell if [ -z "$(DISABLE_AV)" ] || [ "$(DISABLE_AV)" = "0" ] ; then echo enabled ; else echo disabled ; fi) +VIDEO = $(shell if [ -z "$(DISABLE_VI)" ] || [ "$(DISABLE_VI)" = "0" ] ; then echo enabled ; else echo disabled ; fi) ifneq ($(X11), disabled) ifneq ($(AUDIO), disabled) ifneq ($(VIDEO), disabled)