Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: VDR developer version 1.3.7



Klaus Schmidinger wrote:
VDR developer version 1.3.7 is now available at

    ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.3.7.tar.bz2
Hi,

why didn't you merge the gcc3.4 fixes? Without it, it won't compile.

I think Marcel Wiesweg' patch is the right way to go:

diff -U 2 vdr-1.3.6/config.h ./config.h
--- vdr-1.3.6/config.h  Fri Mar  5 15:35:15 2004
+++ ./config.h  Thu Apr 22 22:59:08 2004
@@ -139,5 +139,5 @@
   {
     bool result = true;
-    T *l = (T *)First();
+    T *l = (T *)this->First();
     cSafeFile f(fileName);
     if (f.Open()) {
Common subdirectories: vdr-1.3.6/libsi and ./libsi
diff -U 2 vdr-1.3.6/plugin.c ./plugin.c
--- vdr-1.3.6/plugin.c  Sat Aug 30 16:52:58 2003
+++ ./plugin.c  Thu Apr 22 22:23:39 2004
@@ -163,5 +163,5 @@
   if (!error) {
      void *(*creator)(void);
-     (void *)creator = dlsym(handle, "VDRPluginCreator");
+     creator = (void *(*)(void))dlsym(handle, "VDRPluginCreator");
      if (!(error = dlerror()))
         plugin = (cPlugin *)creator();



Cheers,

Prakash


--
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index