[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Original]
Re: [transcode-users] Can't complie against ffmpeg
|
To: |
"transcode Users Mailing List" <transcode-users@xxxxxxxxx> |
|
Subject: |
Re: [transcode-users] Can't complie against ffmpeg |
|
From: |
"Chris Kuethe" <chris.kuethe@xxxxxxxxx> |
|
Date: |
Sat, 15 Jul 2006 09:44:34 -0600 |
|
Delivered-to: |
itdp@localhost |
|
Domainkey-signature: |
a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com;h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references;b=ZIrZlx3/sog4NvgLOduTXcQOceyW1dOp8DaD2spx6mdR0AG7cb8drsPPQ8l/jxvleZWiDURK45l0vEDLek+VCtsDT4b5juJHJOb42usGAoUN9pV5pnI+soxfDr+d7luzsSjBT+R+zfdPXBya/ODJbZmFNh+SOgrZDZSMWkn6ADk= |
|
In-reply-to: |
<44B8DBDE.6090008@libero.it> |
|
References: |
<44B8DBDE.6090008@libero.it> |
On 7/15/06, paolo cutilli <paolo.cutilli@xxxxxxxxx> wrote:
Hello there.
When I compile bu this:
./configure --with-libavcodec-prefix=/usr/local/bin
--with-libavcodec-includes=/usr/local/include/ffmpeg
I get this:
ERROR: requirement failed: cannot compile ffmpeg/avcodec.h
ffmpeg/avcodec.h can be found in the following packages:
FFmpeg http://www.ffmpeg.org
RTF configure.log
I'm guessing that you've passed in bad data and configure is doing
something like gcc -I/usr/local/include/ffmpeg -L/usr/local/bin
-lavcodec -o conftest conftest.c
That looks like a pretty sane command line but I bet your libavcodec
(etc) doesn't live in /usr/local/bin and i'm guessing that conftest.c
says "#include <ffmpeg/avcodec.h>" which will fail because
/usr/local/include/ffmpeg/ffmpeg/avcodec.h doesn't exist.
But read the configure.log to see exactly what configure was trying to
do and why it failed.
--
GDB has a 'break' feature; why doesn't it have 'fix' too?