2014-07-30 14:14:13 +02:00
|
|
|
# Variables for desktop notifications support
|
|
|
|
DESK_NOTIFY_LIBS = libnotify
|
2014-09-23 03:51:55 +02:00
|
|
|
DESK_NOTIFY_CFLAGS = -DBOX_NOTIFY
|
2014-07-30 14:14:13 +02:00
|
|
|
|
|
|
|
# Check if we can build desktop notifications support
|
2020-05-04 22:18:38 +02:00
|
|
|
CHECK_DESK_NOTIFY_LIBS := $(shell $(PKG_CONFIG) --exists $(DESK_NOTIFY_LIBS) || echo -n "error")
|
2014-07-30 14:14:13 +02:00
|
|
|
ifneq ($(CHECK_DESK_NOTIFY_LIBS), error)
|
2015-03-16 13:16:03 +01:00
|
|
|
LIBS += $(DESK_NOTIFY_LIBS)
|
|
|
|
CFLAGS += $(DESK_NOTIFY_CFLAGS)
|
|
|
|
else ifneq ($(MAKECMDGOALS), clean)
|
2020-05-04 22:18:38 +02:00
|
|
|
MISSING_DESK_NOTIFY_LIBS := $(shell for lib in $(DESK_NOTIFY_LIBS) ; do if ! $(PKG_CONFIG) --exists $$lib ; then echo $$lib ; fi ; done)
|
2015-03-16 13:16:03 +01:00
|
|
|
$(warning WARNING -- Toxic will be compiled without desktop notifications support)
|
|
|
|
$(warning WARNING -- You need these libraries for desktop notifications support)
|
|
|
|
$(warning WARNING -- $(MISSING_DESK_NOTIFY_LIBS))
|
2014-07-30 14:14:13 +02:00
|
|
|
endif
|