1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 16:07:45 +02:00

Merge branch 'Ansa89-fix_checks'

This commit is contained in:
Jfreegman 2016-10-05 12:23:23 -04:00
commit 2fd43aebee

View File

@ -8,14 +8,14 @@ else
endif endif
# Check if we can build video support # Check if we can build video support
CHECK_VIDEO_LIBS = $(shell pkg-config --exists $(VIDEO_LIBS) || echo -n "error") CHECK_VIDEO_LIBS = $(shell $(PKG_CONFIG) --exists $(VIDEO_LIBS) || echo -n "error")
ifneq ($(CHECK_VIDEO_LIBS), error) ifneq ($(CHECK_VIDEO_LIBS), error)
LIBS += $(VIDEO_LIBS) LIBS += $(VIDEO_LIBS)
CFLAGS += $(VIDEO_CFLAGS) CFLAGS += $(VIDEO_CFLAGS)
OBJ += $(VIDEO_OBJ) OBJ += $(VIDEO_OBJ)
else ifneq ($(MAKECMDGOALS), clean) else ifneq ($(MAKECMDGOALS), clean)
MISSING_VIDEO_LIBS = $(shell for lib in $(VIDEO_LIBS) ; do if ! pkg-config --exists $$lib ; then echo $$lib ; fi ; done) MISSING_VIDEO_LIBS = $(shell for lib in $(VIDEO_LIBS) ; do if ! $(PKG_CONFIG) --exists $$lib ; then echo $$lib ; fi ; done)
$(warning WARNING -- Toxic will be compiled without video support) $(warning WARNING -- Toxic will be compiled without video support)
$(warning WARNING -- You will need these libraries for video support) $(warning WARNING -- You will need these libraries for video support)
$(warning WARNING -- $(MISSING_VIDEO_LIBS)) $(warning WARNING -- $(MISSING_VIDEO_LIBS))
endif endif