Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 254269 - media-video/vdr-1.6.0_p2 fails to compile with linux-headers >=2.6.28 installed
Summary: media-video/vdr-1.6.0_p2 fails to compile with linux-headers >=2.6.28 installed
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo VDR Project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-01-08 22:27 UTC by Timo Gurr (RETIRED)
Modified: 2009-01-12 13:23 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Timo Gurr (RETIRED) gentoo-dev 2009-01-08 22:27:12 UTC
compilation fails with:
dvbdevice.h:19:2: Error: #error VDR requires Linux DVB driver API version 3!

manually editing /usr/include/linux/dvb/version.h and replacing

#define DVB_API_VERSION 5
#define DVB_API_VERSION_MINOR 0

with

#define DVB_API_VERSION 3
#define DVB_API_VERSION_MINOR 1

lets VDR compile again.
Comment 1 Matthias Schwarzott gentoo-dev 2009-01-09 16:26:19 UTC
We should change dvbdevice.h from
#if DVB_API_VERSION != 3
#error VDR requires Linux DVB driver API version 3!
#endif

to
#if (DVB_API_VERSION != 3) && (DVB_API_VERSION != 5)
#error VDR requires Linux DVB driver API version 3!
#endif
Comment 2 Matthias Schwarzott gentoo-dev 2009-01-12 13:23:20 UTC
Fix commited.