Hi! Claus Buchberger wrote:
> in config.log is the resolution: > configure:3705: gcc -o conftest -g -O2 > -L/home/download/dvbcut/dvbcut/ffmpeg/lib conftest.c -la52 -lmad >&5 > /usr/local/lib/liba52.a(imdct.o): In function `a52_imdct_init': > /home/download/dvbcut/liba52/a52dec-0.7.5-cvs/liba52/imdct.c:372: > undefined reference to `sqrt' [...] > configure:3729: result: no > configure:3739: error: Did not find required a52 library > > > > Is it a bug in the configure script or do I need the the previous > version of liba52? Actually, configure is lying. liba52 is NOT missing - but it wants you to link with -lm (the math library) as well. This does not happen (at least on Linux) if you install liba52 as a shared library (in your case, there's only the static one). But you have to explicitly configure liba52 with "--enable-shared" for that (which I recommend anyway). I changed configure.in a little to take care of that. When it looks for liba52, it will now automatically include -lm, whether you need it or not. Welcome to r156, -- Michael "Tired" Riepe <mich...@mr511.de> X-Tired: Each morning I get up I die a little ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ DVBCUT-devel mailing list DVBCUT-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/dvbcut-devel