On Sun, 9 Jul 2006 08:59:29 +0000
"daniele rosa" <[EMAIL PROTECTED]> wrote:
Ciao,
> Hello,
> after the check out of the last version of transcode
>
> cvs -z3 -d :pserver:[EMAIL PROTECTED]:/cvstc co -r transcode_1_0 transcode
That's the last stable version, that's was you looking for?
If you want to get very last development version use -r HEAD.
AFAIK, transcode_1_0 branch has got NO changes until 1.0.2 released.
> The error message is:
>
> ./configure: line 30314: syntax error near unexpected token `}'
> ./configure: line 30314: `echo "${ECHO_T}no" >&6; }'
autoconf version? You are on debian, I guess.
Looks like we must fix the autoconf issue. Grumph.
> dr:/usr/local/src/transcode# cat tc_pkg_err_file
> ERROR: requirement failed: cannot compile ffmpeg/avcodec.h
> ffmpeg/avcodec.h can be found in the following packages:
> FFmpeg http://www.ffmpeg.org
That's another story.
Apply attached patch against configure (I'll upload on wiki next week).
Saluti,
--
Francesco Romani - Ikitt ['people always complain, no matther what you do']
IM contact : (email first, Antispam default deny!) icq://27-83-87-867
known bugs : http://www.transcoding.org/cgi-bin/transcode?Bug_Showcase
tiny homepage : http://fromani.exit1.org (see IDEAS if you want send code!)
--- configure.orig 2006-06-27 22:41:13.000000000 +0200
+++ configure 2006-06-27 22:42:12.000000000 +0200
@@ -28107,7 +28107,12 @@
printf("install ffmpeg 0.4.9-pre1 or newer, or a cvs version after 20040703");
return(1);
}
+ /* 3344640 == ((51<<16)+(9<<8)+0) == 51.9.0 */
+#if LIBAVCODEC_BUILD >= 3344640
+ printf("VER=%s\n", AV_STRINGIFY(LIBAVCODEC_VERSION));
+#else
printf("VER=%s\n", FFMPEG_VERSION);
+#endif /* LIBAVCODEC_BUILD >= 51.9.0 check */
printf("BUILD=%d\n", LIBAVCODEC_BUILD);
return(0);
}