diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2014-03-16 12:53:47 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2014-03-16 12:53:47 +0100 |
commit | a4b8729e6af299a3f2eb4fa676e93cfd85778521 (patch) | |
tree | 7d65ba6940b7cb1326104076eeff711b8b33e697 /Makefile | |
parent | 687b93b2152b2ba82b0f828e543d4904c124bae2 (diff) | |
download | vdr-a4b8729e6af299a3f2eb4fa676e93cfd85778521.tar.gz vdr-a4b8729e6af299a3f2eb4fa676e93cfd85778521.tar.bz2 |
Added support for systemd2.1.6
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 3.1 2013/05/23 10:10:00 kls Exp $ +# $Id: Makefile 3.2 2014/03/16 12:47:35 kls Exp $ .DELETE_ON_ERROR: @@ -93,6 +93,11 @@ INCLUDES += $(shell pkg-config --cflags fribidi) DEFINES += -DBIDI LIBS += $(shell pkg-config --libs fribidi) endif +ifdef SDNOTIFY +INCLUDES += $(shell pkg-config --cflags libsystemd-daemon) +DEFINES += -DSDNOTIFY +LIBS += $(shell pkg-config --libs libsystemd-daemon) +endif LIRC_DEVICE ?= /var/run/lirc/lircd |