Francesco Romani wrote: > On Fri, 2008-07-18 at 11:01 +0100, John Paul Hayes wrote: > > Hello All, > > I???ve just downloaded the latest version of Transcode and I???m having a > > problem installing in it. > > I???m running the following configure command: > > ./configure --with-libavcodec-prefix=/usr/local/ > > --with-libavcodec-includes=/usr/local/include/ > > --with-libavcodec-libs=/usr/local/lib > > And I???m still getting the following error: > > ERROR: requirement failed: cannot compile ffmpeg/avcodec.h >
Looks to me like the configure script is looking for /usr/local/include/ffmpeg/avcodec.h But the header file is in /usr/local/include/libavcodec/avcodec.h So to make it happy you can do this: ln -s /usr/local/include/libavcodec /usr/local/include/ffmpeg