Hi,

since LiveCam is closely related to m560x, I thought I'd send this here.

chunk of configure's output:

> checking ffmpeg/avcodec.h usability... no
> checking ffmpeg/avcodec.h presence... no
> checking for ffmpeg/avcodec.h... no

chunk of Make output:

> mpegencoder.h:28:21: error: avcodec.h: No such file or directory

I guess you should change the configure.in to fail in case avcodec.h is not 
found. I have no specific knowledge of how Autoconf works, but we have these 
lines in one project I'm working on:

> # check for GLICT
> AC_CHECK_HEADERS([GLICT/globals.h],,[AC_MSG_ERROR("*** GLICT header not 
found.")])

I presume that will help? Perhaps replacing 
> AC_CHECK_HEADER([ffmpeg/avcodec.h])
with
> AC_CHECK_HEADERS([ffmpeg/avcodec.h],,[AC_MSG_ERROR("*** FFMPEG headers not 
found.")])

Cheers!
-- 
Ivan Vucica

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
M560x-driver-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/m560x-driver-devel

Reply via email to