Well, that's my fault because I didn't double check my external ffmpeg patch before sending it. Applying this patch to configure.in fixed it for me :
--- ../cinelerra-svn-checkout/configure.in 2006-10-29
22:10:16.851317167 +0100 +++ configure.in 2006-10-29
22:51:18.520931568 +0100 @@ -298,7 +298,7 @@
FFMPEG_EXTERNALTEXT="External ffmpeg"
else
FFMPEG_FOLDER=ffmpeg
- FFMPEG_CFLAGS="-I$(srcdir)/ffmpeg/libavcodec"
+ FFMPEG_CFLAGS="-I\$(srcdir)/ffmpeg/libavcodec"
FFMPEG_LIBS="ffmpeg/libavcodec/libavcodec.la"
FFMPEG_EXTERNALTEXT="Internal ffmpeg"
fi
This is because configure tries to replace $(srcdir) by its value but
it's not defined there, escaping the "$" restores the correct behavior.
Alexis.
pgp5ABQv6uBAI.pgp
Description: PGP signature
