Bugs in 1.2.0-git
Posted: 01 May 2010 20:48
I don't know how to report bugs otherwise, so i'm writing them here.
This one in the mozilla project bothers me since 1.2.0 came online. It's an undefined symbol 'NPN_MemAlloc'
Looks like this is supposed to be defined in support/npunix.c and support.npwin.c but when compiling natively with msys/mingw this comes out:
I hotfix this by replacing the calls to NPN_MemAlloc to plain ordinary malloc's (and the corresponding NPN_MemFree to free) but with each update the NPN error returns.
Maybe i'm the only one building this natively on Windows?
This one popped up since yesterday:
Looks like a missing kate.h, I don't find one anywhere
Removed all 'kate' references in the makefile to skip this module, all the rest compiles.
This one in the mozilla project bothers me since 1.2.0 came online. It's an undefined symbol 'NPN_MemAlloc'
Looks like this is supposed to be defined in support/npunix.c and support.npwin.c but when compiling natively with msys/mingw this comes out:
Code: Select all
c:\videolan\vlc\projects\mozilla/./control/nporuntime.h:81: undefined reference to `NPN_MemAlloc'
c:\videolan\vlc\projects\mozilla/./control/nporuntime.h:81: undefined reference to `NPN_MemAlloc'
c:\videolan\vlc\projects\mozilla/./control/nporuntime.h:81: undefined reference to `NPN_MemAlloc'
c:\videolan\vlc\projects\mozilla/./control/nporuntime.h:81: undefined reference to `NPN_MemAlloc'
.libs/npvlc_la-npolibvlc.o:c:\videolan\vlc\projects\mozilla/./control/nporuntime.h:81: more undefined references to `NPN_MemAlloc' follow
collect2: ld returned 1 exit status
make[2]: *** [npvlc.la] Error 1
make[2]: Leaving directory `/vlc/projects/mozilla'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/vlc'
make: *** [all] Error 2
Maybe i'm the only one building this natively on Windows?
This one popped up since yesterday:
Code: Select all
kate.c: In function 'DecodePacket':
kate.c:1186: error: 'TigerValidateSubpicture' undeclared (first use in this function)
kate.c:1186: error: (Each undeclared identifier is reported only once
kate.c:1186: error: for each function it appears in.)
kate.c:1187: error: 'TigerUpdateSubpicture' undeclared (first use in this function)
kate.c:1188: error: 'TigerDestroySubpicture' undeclared (first use in this function)
make[2]: *** [libkate_plugin_la-kate.lo] Error 1
make[2]: Leaving directory `/vlc/modules/codec'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/vlc/modules/codec'
make: *** [all] Error 2
Removed all 'kate' references in the makefile to skip this module, all the rest compiles.