Re: building mythtv 0.24 on el5, status and instructions
Jonathan Martens <[email protected]>
| Newsgroups | gmane.linux.redhat.rpm.atrpms.devel |
|---|---|
| Message-ID | <[email protected]> |
On 23-11-2010 0:58, Andy Burns wrote: > --- mythtv-0.24/libs/libmythtv/analogsignalmonitor.cpp.org 2010-11-21 > 19:10:53.000000000 +0000 > +++ mythtv-0.24/libs/libmythtv/analogsignalmonitor.cpp 2010-11-21 > 19:11:13.000000000 +0000 > @@ -6,6 +6,7 @@ > #include<sys/ioctl.h> > #include<poll.h> > > +#include<linux/videodev2.h> > #include<linux/videodev.h> Above should not be required as linux/videodev.h already will include linux/videodev2.h as it is included from linux/videodev.h: #ifndef __LINUX_VIDEODEV_H #define __LINUX_VIDEODEV_H #include <linux/types.h> #include <linux/ioctl.h> #include <linux/videodev2.h> I am able to compile past analogsignalmonitor.cpp without above include (in fact I am able to compile libmyth, the rest is now running). Kind regards, Jonathan