Re: [vdr] Updated patch for vdr 1.7.22 in gentoo

2012-01-04 Thread Marc
On 04/01/2012 00:29, René wrote: On 03.01.2012 16:12 , René wrote: On 03.01.2012 10:29 , Marc wrote: * Unifdef sources ... [ ok ] * Applying local patches * Applying livebuffer-1.7.22.patch ... [ ok ] Source prepared. Ok, then i have something fishy going on.. I have the livebufer in the

[vdr] vdr-1.7.22 mips_uClibc-0.9.30.1 (tools.c canonicalize_file_name...)

2012-01-04 Thread Infonux
Hi, I try to compile vdr for openwrt (r29611) but I get the following errors tools.c: In function 'char* ReadLink(const char*)': tools.c:514: error: 'canonicalize_file_name' was not declared in this scope tools.c: In member function 'int cUnbufferedFile::Open(const more info in attached file.

Re: [vdr] vdr-1.7.22 mips_uClibc-0.9.30.1 (tools.c canonicalize_file_name...)

2012-01-04 Thread Infonux
Wed, 4 Jan 2012 14:46:18 +0100 Infonux infonux__gmail.com wrote: solved by removing FADVISE and ... http://svn.exactcode.de/t2/trunk/package/base/uclibc/patches/vdr-realpath.patch http://www.vdr-portal.de/index.php?page=Threadpostid=641884 vdr-1.7.22_uClibc-0.9.30.1_fix_build.patch.gz

Re: [vdr] Crystalhd support and help

2012-01-04 Thread Lists
On 12-01-03 05:54 PM, Damien Bally wrote: Hello I got a BCM70015 card working with vdr-xineliboutput by using the crystalhd plugin for xine here : http://crystalhd.svn.sourceforge.net/viewvc/crystalhd/branches/xine-plugin-crystalhd-ffmpeg/ The install procedure is thoroughly explained in

[vdr] [PATCH] Fix build with g++ 4.7.0.

2012-01-04 Thread Ville Skyttä
This is the PR24163 case mentioned in http://article.gmane.org/gmane.linux.redhat.fedora.devel/157671 --- config.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/config.h b/config.h index 7825364..b0233a9 100644 --- a/config.h +++ b/config.h @@ -122,7 +122,7 @@ public:

Re: [vdr] vdr-1.7.22 mips_uClibc-0.9.30.1 (tools.c canonicalize_file_name...)

2012-01-04 Thread Theunis Potgieter
I would change: - char *TargetName = canonicalize_file_name(FileName); + char *TargetName = MALLOC(char, PATH_MAX); + TargetName = realpath(FileName, TargetName); to - char *TargetName = canonicalize_file_name(FileName); + TargetName = realpath(FileName, NULL); From

Re: [vdr] vdr-1.7.22 mips_uClibc-0.9.30.1 (tools.c canonicalize_file_name...)

2012-01-04 Thread Theunis Potgieter
I meant, + char *TargetName = realpath(FileName, NULL); On 4 January 2012 22:11, Theunis Potgieter theunis.potgie...@gmail.com wrote: I would change: - char *TargetName = canonicalize_file_name(FileName); + char *TargetName = MALLOC(char, PATH_MAX); + TargetName = realpath(FileName,

Re: [vdr] [PATCH] Fix build with g++ 4.7.0.

2012-01-04 Thread Udo Richter
Am 04.01.2012 21:04, schrieb Ville Skyttä: This is the PR24163 case mentioned in http://article.gmane.org/gmane.linux.redhat.fedora.devel/157671 diff --git a/config.h b/config.h index 7825364..b0233a9 100644 --- a/config.h +++ b/config.h @@ -122,7 +122,7 @@ public: if