diff options
author | anbr <vdr07@deltab.de> | 2011-05-22 19:08:46 +0200 |
---|---|---|
committer | anbr <vdr07@deltab.de> | 2011-05-22 19:08:46 +0200 |
commit | acbdb1ddc238e7c0a942043b3d0d1d81bb701edd (patch) | |
tree | aed8d1a4147bacf56cae5835dd876aff096f51c2 /Makefile | |
parent | d5a0dbd37d69eb3eb64b86c31ca834f88ab68f60 (diff) | |
download | vdr-plugin-targavfd-0.1.0.tar.gz vdr-plugin-targavfd-0.1.0.tar.bz2 |
Drop dependency to libhid, now is libusb-1.0 used0.1.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ # # Makefile for targavfd plugin to VDR (C++) # -# (C) 2010 Andreas Brachold <vdr07 AT deltab de> +# (C) 2010-2011 Andreas Brachold <vdr07 AT deltab de> # # This plugin is free software: you can redistribute it and/or # modify it under the terms of the GNU General Public License as published @@ -57,8 +57,8 @@ DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' INCLUDES += $(shell freetype-config --cflags) LIBS += $(shell freetype-config --libs) -INCLUDES += $(shell pkg-config --cflags libhid) -LIBS += $(shell pkg-config --libs libhid) +INCLUDES += $(shell pkg-config --cflags libusb-1.0) +LIBS += $(shell pkg-config --libs libusb-1.0) DEFINES += -DHAVE_STDBOOL_H ### The object files (add further files here): |