summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-04-25 21:37:32 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-04-25 21:37:32 +0200
commit4ebc8393eeb0cc49fb0062af73a6ec0910a50ff3 (patch)
tree2fb5229c5e88e7879f992f8118d8c4be16dcc548 /HISTORY
parent782f4e022d5b046f883248b25e4e73c986e30240 (diff)
downloadvdr-4ebc8393eeb0cc49fb0062af73a6ec0910a50ff3.tar.gz
vdr-4ebc8393eeb0cc49fb0062af73a6ec0910a50ff3.tar.bz2
Added a note about adding 'INCLUDES += -I/include' to an existing Make.config
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY13
1 files changed, 11 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index d2fbc0c3..b16e8b55 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4532,8 +4532,15 @@ Video Disk Recorder Revision History
files as VDR itself, the definition of DVBDIR has been removed from the VDR
Makefile. If you are using a driver version that has its header files at a location
other than /usr/include/linux/dvb, you can define DVBDIR in the Make.config
- file (see also INSTALL). Any reference to DVBDIR should be removed from all
- plugins' Makefiles, like this:
+ file (see also INSTALL). Note that if you already have a Make.config file of your
+ own, you should add the lines
+
+ ifdef DVBDIR
+ INCLUDES += -I$(DVBDIR)/include
+ endif
+
+ to its end, as in the new Make.config.template.
+ Any reference to DVBDIR should be removed from all plugins' Makefiles, like this:
------------------------------------------------------------
--- PLUGINS/src/hello/Makefile 2005/11/11 13:20:14 1.10
@@ -4658,3 +4665,5 @@ Video Disk Recorder Revision History
- Fixed broken APIVERSION extraction line in 'newplugin' (thanks to Oliver Endriss).
- Fixed entering '0' in a cMenuEditIntItem (reported by Mirko Dölle).
- Updated the Italian OSD texts (thanks to Nino Gerbino).
+- Added a note about adding 'INCLUDES += -I$(DVBDIR)/include' to an existing
+ Make.config (problem reported by Markus Ehrnsperger).