Question

I've managed to install ffmpeg, a basic build using

./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg

Now I've installed liblame and x264 to /export/home/userid/bin and tried to compile ffmpeg as follows:

./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg --enable-libmp3lame  --enable-libx264 --enable-gpl

And I get the error

ERROR: libmp3lame not found

How can I tell configure to look for things in /export/home/bin?

Thanks

Was it helpful?

Solution

Solved.

compile using --enable-cflags and --extra-ldflags

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top