1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-07 03:46:34 +01:00

Add X11 option

This commit is contained in:
Andriy Voskoboinyk
2014-09-04 01:19:32 +03:00
parent 009095af24
commit 424a1c94d9
2 changed files with 21 additions and 5 deletions

17
cfg/checks/x11.mk Normal file
View File

@@ -0,0 +1,17 @@
# Variables for X11 support
X11_LIBS = x11
X11_CFLAGS = -D_X11
# Check if we can build X11 support
CHECK_X11_LIBS = $(shell pkg-config --exists $(X11_LIBS) || echo -n "error")
ifneq ($(CHECK_X11_LIBS), error)
LIBS += $(X11_LIBS)
CFLAGS += $(X11_CFLAGS)
else
ifneq ($(MAKECMDGOALS), clean)
MISSING_X11_LIBS = $(shell for lib in $(X11_LIBS) ; do if ! pkg-config --exists $$lib ; then echo $$lib ; fi ; done)
$(warning WARNING -- Toxic will be compiled without x11 support (needed for focus tracking))
$(warning WARNING -- You need these libraries for x11 support)
$(warning WARNING -- $(MISSING_X11_LIBS))
endif
endif