2007/5/17, Martin Guy <[EMAIL PROTECTED]>:
> > >> >if ! test -f !$i/ffmpeg/avformat.h; then
$i isn't defined there, or is left over from sth else.


 if test x"${ac_cv_path_ffmpeg_incl}" = x; then
   if test x${cross_compiling} = xno; then
     AC_CHECK_HEADERS(ffmpeg/avcodec.h, [ac_cv_path_ffmpeg_incl=""])
   fi
 else
   AC_MSG_CHECKING([for ffmpeg header])
   if test -f "$i/ffmpeg/avformat.h"; then    # <--- here I mean
     AC_MSG_RESULT([yes]);
   else
     AC_MSG_RESULT([no])
     AC_MSG_WARN([you need to install the avformat package!])

${ac_cv_path_ffmpeg_incl} maybe, but that is set to
/usr/include/ffmpeg by this point on Debian at least. In any case, the
(presumably) correct test for $x/ffmpeg/avcodec.h will still fail
here.

  M


_______________________________________________
Gnash-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-commit

Reply via email to