mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 17:43:02 +01:00
Makefile: fix video libs check
This commit is contained in:
parent
e17fa89d8f
commit
da6fe41d75
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user