diff options
author | Timo Eskola <timo@tolleri.net> | 2015-09-08 13:48:18 +0300 |
---|---|---|
committer | Timo Eskola <timo@tolleri.net> | 2015-09-08 13:48:18 +0300 |
commit | a29e83f54bbae14ee29f958d3640be9073e25a0c (patch) | |
tree | 3896cd0a07f585e2ac71d4e5a8c9dda6db6e4780 /Makefile | |
parent | 5803854e175a911011abc760b3cda23dae05b50a (diff) | |
download | vdr-plugin-useractivity-a29e83f54bbae14ee29f958d3640be9073e25a0c.tar.gz vdr-plugin-useractivity-a29e83f54bbae14ee29f958d3640be9073e25a0c.tar.bz2 |
Version 0.0.4:
- Fixed X activity detection for Ubuntu 7.10.
- Fixed compilation without XSS.
- Added host to LSTU printout.
- Fixed SVDRP command SETI for VDR 1.5.1 and later.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -69,7 +69,9 @@ OBJS = $(PLUGIN).o activity.o i18n.o ### Libraries -LIBS = -lX11 -lXss +ifeq ($(USERACTIVITY_XSS), 1) + LIBS = -lX11 -lXss +endif ### Implicit rules: |