Soluzioni per plugins + gcc 4.3.2

Tutto quello che ha a che fare con i plugins.

Moderatori: ragno, tapino, alez, zulu, davidea

Rispondi
Stef
Messaggi: 297
Iscritto il: 23 gen 2007, 18:57

Soluzioni per plugins + gcc 4.3.2

Messaggio da Stef »

Ciao,
in questi giorni sto provando a migrare ad archlinux e ho trovato alcune difficoltà nel compilare alcuni plugins. Ho trovato in rete le soluzioni, ve le riporto sperando che aiutino anche qualcun'altro.

epgsearch - errore:

Codice: Seleziona tutto

epgsearch.c: In member function ‘void cPluginEpgsearch::CheckUTF8()’:
epgsearch.c:471: error: ‘CODESET’ was not declared in this scope
epgsearch.c:471: error: ‘nl_langinfo’ was not declared in this scope
make: *** [epgsearch.o] Errore 1
soluzione: inserire in epgsearch.c

Codice: Seleziona tutto

#include <langinfo.h>
extrecmenu - errore:

Codice: Seleziona tutto

tools.c: In static member function ‘static void Icons::InitCharSet()’:
tools.c:694: error: ‘CODESET’ was not declared in this scope
tools.c:694: error: ‘nl_langinfo’ was not declared in this scope
make: *** [tools.o] Errore 1
soluzione: inserire in in tools.cc

Codice: Seleziona tutto

 #include <langinfo.h>
fonte
http://www.vdr-portal.de/board/thread.php?postid=732933


music - errore:

Codice: Seleziona tutto

imagecache.h:22: error: 'uint' does not name a type
imagecache.h:29: error: expected `)' before 'MaxItems'
imagecache.h:36: error: 'uint' does not name a type
imagecache.h:46: error: expected constructor, destructor, or type conversion before '(' token
imagecache.h: In member function 'data_type& cxCache<key_type, data_type>::operator[](const key_type&)':
imagecache.h:91: error: 'mMaxItems' was not declared in this scope
make[1]: *** [imagecache.o] Error 1
soluzione: inserire in imagecache.h

Codice: Seleziona tutto

#include <sys/types.h>
fonte
http://bugs.gentoo.org/attachment.cgi?i ... ction=diff

aggiungo infine per complettezza anche la soluzione per menuorg di grazymax
http://http://forum.vdr-italia.org/view ... w=previous

Buon lavoro :)
Vdr-HD headless (in preparazione), YaVDR 0.3 su portatile, Vu+ Duo in salotto
Enjoy with Linux, it's free ;)
Rispondi