compilation - redhat - compile ffmpeg - how to link with liblame/x264 when they're installed locally -
i've managed install ffmpeg, basic build using
./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg
now i've installed liblame , x264 /export/home/userid/bin , tried compile ffmpeg follows:
./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg --enable-libmp3lame --enable-libx264 --enable-gpl
and error
error: libmp3lame not found
how can tell configure things in /export/home/bin?
thanks
solved.
compile using --enable-cflags , --extra-ldflags
Comments
Post a Comment