[ANNOUNCE] vdr-pvrinput-0.1.1

Message ID 200605011225.39028.zzam@gentoo.org
State New
Headers

Commit Message

Matthias Schwarzott May 1, 2006, 10:25 a.m. UTC
  On Sunday 30 April 2006 18:15, Andreas Regel wrote:
> Hi,
>
> there is a new version of the pvrinput plugin available:
> http://home.arcor.de/andreas.regel/files/pvrinput/vdr-pvrinput-0.1.1.tgz
>
> Changes since 0.1.0:
> - adapted to vdr 1.4.0. Older versions should still work.
> - fixed detection of PVR card to work with ivtv version 0.4.1 or later
> with kernel 2.4.
>
> As I recently switched to satellite reception I don't need the PVR card
> any longer. So don't expect any further development or new releases from
> me in the future. If anyone wants to continue development, just do it.
>
There is a minor problem which at least occurs on gentoo:
The Plugin needs to be compiled with the attached patch which changes the 
include order of the files videodev.h and videodev2.h

This will prevent the usage of the file videodev2.h (which is in my case too 
old for the plugin to compile) located under /usr/include/linux/...

Matthias
  

Patch

diff -ru pvrinput-0.1.0-orig/device.c pvrinput-0.1.0/device.c
--- pvrinput-0.1.0-orig/device.c	2006-02-10 20:04:39.667936500 +0100
+++ pvrinput-0.1.0/device.c	2006-02-10 20:04:52.976768250 +0100
@@ -6,13 +6,13 @@ 
 #include <vdr/channels.h>
 #include <vdr/sources.h>
 
-#include <linux/videodev.h>
-
 extern "C" {
 #include "videodev2.h"
 #include "ivtv.h"
 }
 
+#include <linux/videodev.h>
+
 #include "common.h"
 #include "device.h"
 #include "global.h"