mingw and libvorbis
when compiling libvorbis i got some undefined references:
undefined reference to `ogg_sync_pageseek' ...
(mingw)
fixed by changing the lib/Makefile after ./configure so that the LIB and OGG_LIB lines look like that:
LIBS = -L/local/lib -logg
OGG_LIBS = -L/local/lib -logg
undefined reference to `ogg_sync_pageseek' ...
(mingw)
fixed by changing the lib/Makefile after ./configure so that the LIB and OGG_LIB lines look like that:
LIBS = -L/local/lib -logg
OGG_LIBS = -L/local/lib -logg
0 Comments:
Post a Comment
<< Home