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
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.
Wed, 4 Jan 2012 14:46:18 +0100
Infonux 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=Thread&postid=641884
vdr-1.7.22_uClibc-0.9.30.1_fix_build.patch.gz
Description: GNU Zip comp
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
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:
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 http://linux.die.net/m
I meant,
+ char *TargetName = realpath(FileName, NULL);
On 4 January 2012 22:11, Theunis Potgieter wrote:
>
> I would change:
>
> - char *TargetName = canonicalize_file_name(FileName);
> + char *TargetName = MALLOC(char, PATH_MAX);
> + TargetName = realpath(FileName, TargetName);
>
> to
>
>
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:
>