building fame 0.9.0 - lame location
Status: Beta
Brought to you by:
chappelier
I have lame installed in directory:
/usr/local/lame-3.92
However when running configure lame is not found
$ ./configure --prefix=/usr/local/fame-0.9.0
...
checking for lame_init in -lmp3lame... no
configure: warning: **** libmp3lame not found;
disabling sound support ***
configure: warning: **** LAME v3.89beta is available
at lame.sourceforge.net ***
...
$
It would be nice to have a --with-lame-prefix option to
configure.
Logged In: NO
Same problem still exists.
I solved it in a brute, but efficient and simple way:
Edit configure file and replace instances of
lame_init
with
lame_decode_init
(Note : of course do make clean to clean-up previous builds...)
Now configure will not complain and sound will be supported.
Hope this helps,...