From ea613e6b2651bedacce9413df0a9e3c80afb6c1c Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Wed, 1 Jan 2014 13:35:13 +0100 Subject: Avoiding unnecessary pkg-config warnings in plugin Makefiles --- PLUGINS/src/epgtableid0/HISTORY | 4 ++++ PLUGINS/src/epgtableid0/Makefile | 4 ++-- PLUGINS/src/epgtableid0/epgtableid0.c | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) (limited to 'PLUGINS/src/epgtableid0') diff --git a/PLUGINS/src/epgtableid0/HISTORY b/PLUGINS/src/epgtableid0/HISTORY index da97932a..9f1eb7b6 100644 --- a/PLUGINS/src/epgtableid0/HISTORY +++ b/PLUGINS/src/epgtableid0/HISTORY @@ -16,3 +16,7 @@ VDR Plugin 'epgtableid0' Revision History 2013-03-31: Version 2.0.0 - Official release. + +2014-01-01: Version 2.1.1 + +- Avoiding unnecessary pkg-config warnings in plugin Makefiles. diff --git a/PLUGINS/src/epgtableid0/Makefile b/PLUGINS/src/epgtableid0/Makefile index 6190e62e..e3c0c7b3 100644 --- a/PLUGINS/src/epgtableid0/Makefile +++ b/PLUGINS/src/epgtableid0/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.13 2013/01/12 13:45:01 kls Exp $ +# $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The directory environment: # Use package data if installed...otherwise assume we're under the VDR source directory: -PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) +PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr)) LIBDIR = $(call PKGCFG,libdir) PLGCFG = $(call PKGCFG,plgcfg) # diff --git a/PLUGINS/src/epgtableid0/epgtableid0.c b/PLUGINS/src/epgtableid0/epgtableid0.c index 1aef2a7a..e22d70ce 100644 --- a/PLUGINS/src/epgtableid0/epgtableid0.c +++ b/PLUGINS/src/epgtableid0/epgtableid0.c @@ -3,13 +3,13 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: epgtableid0.c 1.4 2013/03/31 09:30:18 kls Exp $ + * $Id: epgtableid0.c 3.1 2014/01/01 13:29:54 kls Exp $ */ #include #include -static const char *VERSION = "2.0.0"; +static const char *VERSION = "2.1.1"; static const char *DESCRIPTION = "EPG handler for events with table id 0x00"; // --- cTable0Handler -------------------------------------------------------- -- cgit v1.2.3