1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Added a note about adding 'INCLUDES += -I/include' to an existing Make.config

This commit is contained in:
Klaus Schmidinger 2006-04-25 21:37:32 +02:00
parent 782f4e022d
commit 4ebc8393ee
2 changed files with 15 additions and 2 deletions

View File

@ -1872,3 +1872,7 @@ Werner Schweer <ws@seh.de>
Nino Gerbino <ngerb@interfree.it> Nino Gerbino <ngerb@interfree.it>
for translating OSD texts to the Italian language for translating OSD texts to the Italian language
Markus Ehrnsperger <markus.ehrnsperger@googlemail.com>
for reporting a problem with missing 'INCLUDES += -I$(DVBDIR)/include' in an existing
Make.config

13
HISTORY
View File

@ -4532,8 +4532,15 @@ Video Disk Recorder Revision History
files as VDR itself, the definition of DVBDIR has been removed from the VDR 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 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 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 file (see also INSTALL). Note that if you already have a Make.config file of your
plugins' Makefiles, like this: 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 --- 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 broken APIVERSION extraction line in 'newplugin' (thanks to Oliver Endriss).
- Fixed entering '0' in a cMenuEditIntItem (reported by Mirko Dölle). - Fixed entering '0' in a cMenuEditIntItem (reported by Mirko Dölle).
- Updated the Italian OSD texts (thanks to Nino Gerbino). - 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).