1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-19 22:26:37 +02:00

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.
This commit is contained in:
Niel Nielsen
2018-03-19 22:31:31 +01:00
committed by GitHub
parent 29aea0b42c
commit f6d9bc3a74

View File

@ -13,7 +13,7 @@ ifneq ($(AUDIO), disabled)
endif endif
# Check if we want build video support # 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 ($(X11), disabled)
ifneq ($(AUDIO), disabled) ifneq ($(AUDIO), disabled)
ifneq ($(VIDEO), disabled) ifneq ($(VIDEO), disabled)