In building ffmpeg
from source, I got the following error to ./configure --with-libcelt
:
ERROR: libcelt not found
So I went to http://www.celt-codec.org/downloads/, cloned the repo, and ./autogen.sh; ./configure; make; make install; make check
ed it.
Back to ffmpeg
source directory, ./configure --with-libcelt
again gave the same error.
I tried soft-linking /opt/celt/libcelt/celt.h
into /usr/local/lib
, but I am now officially stabbing in the dark.
I thought /usr/local/lib
is the canonical place a ./configure
package would look for a library, and that the main named .h
eader file would be enough to show the configurator where things are. What's the right answer?