summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-12-28 10:09:41 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2012-12-28 10:09:41 +0100
commitacbe56f6d0c29fb39b810600dbaaa83bc44c8538 (patch)
treedb650c60511564ff76148ea3b52ddc81858eee77 /HISTORY
parentf70414cf5b6f2fe44187e7bf35efd270c3def585 (diff)
downloadvdr-acbe56f6d0c29fb39b810600dbaaa83bc44c8538.tar.gz
vdr-acbe56f6d0c29fb39b810600dbaaa83bc44c8538.tar.bz2
Plugin Makefiles can now include a configuration file for compile time parameters
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY9
1 files changed, 8 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 64a9bfac..89c4452e 100644
--- a/HISTORY
+++ b/HISTORY
@@ -7460,7 +7460,7 @@ Video Disk Recorder Revision History
is an I-frame (which normally shouldn't occur).
- Fixed replaying ongoing recordings from other VDR instances.
-2012-12-27: Version 1.7.35
+2012-12-28: Version 1.7.35
- Making sure that plugins include the VDR header files from the actual VDR source
directory when doing "make plugins" (suggested by Christoper Reimer).
@@ -7477,3 +7477,10 @@ Video Disk Recorder Revision History
- Added MANDIR to the vdr.pc file, so that plugins that need it can retrieve it via
MANDIR = $(DESTDIR)$(call PKGCFG,mandir).
- Using relative paths again when building plugins locally (by request of Udo Richter).
+- Plugin Makefiles can now include a configuration file for compile time parameters
+ (requested by Reinhard Nissl). The actual name of this file can be defined in
+ Make.config (see "PLGCFG" in Make.config.template), and existing plugin Makefiles
+ that have compile time parameters should add the lines
+ PLGCFG = $(call PKGCFG,plgcfg)
+ -include $(PLGCFG)
+ accordingly (see the "newplugin" script for details).