Re: [vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-08 Thread Marc Wernecke
some x-vdr users reported problems with compiling mplayer and some plug-ins like music too. We solved this by adding DEFINES += -D__KERNEL_STRICT_NAMES Why would this suddenly be necessary? I don't know, but it seems to work. Marc ___ vdr

Re: [vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-07 Thread Marc Wernecke
Hi, some x-vdr users reported problems with compiling mplayer and some plug-ins like music too. We solved this by adding DEFINES += -D__KERNEL_STRICT_NAMES to the VDR Makefile and patching the driver header files --- ./linux/include/linux/dvb/video.h.orig 2009-03-03 09:54:58.0

Re: [vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-07 Thread Anssi Hannula
Gregoire Favre wrote: Hello, just tried compiling vdr-1.7.4 against my v4l-dvb hg's source which fails if I don't use this : [...] This is because of a kernel regression: http://lkml.indiana.edu/hypermail/linux/kernel/0902.3/00411.html A set of patches fixing this is available here:

Re: [vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-06 Thread Klaus Schmidinger
On 03.03.2009 22:23, Gregoire Favre wrote: Hello, just tried compiling vdr-1.7.4 against my v4l-dvb hg's source which fails if I don't use this : --- vdr.c~ 2009-01-18 12:02:37.0 +0100 +++ vdr.c 2009-03-03 22:17:49.0 +0100 @@ -32,6 +32,7 @@ #include pwd.h

Re: [vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-06 Thread Alex Betis
On Fri, Mar 6, 2009 at 4:17 PM, Klaus Schmidinger klaus.schmidin...@cadsoft.de wrote: On 03.03.2009 22:23, Gregoire Favre wrote: Hello, just tried compiling vdr-1.7.4 against my v4l-dvb hg's source which fails if I don't use this : --- vdr.c~ 2009-01-18 12:02:37.0 +0100

Re: [vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-06 Thread Klaus Schmidinger
On 06.03.2009 15:37, Alex Betis wrote: On Fri, Mar 6, 2009 at 4:17 PM, Klaus Schmidinger klaus.schmidin...@cadsoft.de mailto:klaus.schmidin...@cadsoft.de wrote: On 03.03.2009 22:23, Gregoire Favre wrote: Hello, just tried compiling vdr-1.7.4 against my v4l-dvb hg's

Re: [vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-06 Thread Alex Betis
On Fri, Mar 6, 2009 at 4:52 PM, Klaus Schmidinger klaus.schmidin...@cadsoft.de wrote: On 06.03.2009 15:37, Alex Betis wrote: On Fri, Mar 6, 2009 at 4:17 PM, Klaus Schmidinger klaus.schmidin...@cadsoft.de mailto:klaus.schmidin...@cadsoft.de wrote: On 03.03.2009 22:23, Gregoire

Re: [vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-06 Thread Gregoire Favre
On Fri, Mar 06, 2009 at 03:52:03PM +0100, Klaus Schmidinger wrote: Let's be careful to not mix up two different things here. There's apparently the problem Gregoire reported, which he solved by adding an #include, but which doesn't happen here (kernel 2.6.25.20). That one has nothing to do

Re: [vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-04 Thread Sébastien Serra
Hi, I've recently had a problem too. I resolved it like that (i don't know if the compilation error was the same as mine...) : Add this line to the Makefile of VDR : DEFINES += -D_GNU_SOURCE *+DEFINES += -D__KERNEL_STRICT_NAMES * DEFINES += -DVIDEODIR=\$(VIDEODIR)\ Cheers. 2009/3/3 Gregoire

[vdr] [patch] compil vdr-1.7.4 against v4l-dvb hg as of today

2009-03-03 Thread Gregoire Favre
Hello, just tried compiling vdr-1.7.4 against my v4l-dvb hg's source which fails if I don't use this : --- vdr.c~ 2009-01-18 12:02:37.0 +0100 +++ vdr.c 2009-03-03 22:17:49.0 +0100 @@ -32,6 +32,7 @@ #include pwd.h #include signal.h #include stdlib.h +#include