On Tue, 4 Jul 2006 09:11:50 -0600
"Greg Grotsky" <[EMAIL PROTECTED]> wrote:
Hi,
> > Autoconf and automake version?
> I am currently using autoconf 2.59.cvs.2006.06.05-1 and automake 1.9.6-4.
Same version of mine. This package is know to broke our configure, so I've
downgraded to 2.59a and everything (even outside transcode world of course)
works nicely.
$ apt-cache policy autoconf
Installed: 2.59a-9
Candidate: 2.59.cvs.2006.06.05-1
Version table:
2.59.cvs.2006.06.05-1 0
900 http://ftp2.fr.debian.org unstable/main Packages
900 http://ftp.it.debian.org unstable/main Packages
*** 2.59a-9 0
100 /var/lib/dpkg/status
> > 1.0.2's configure need an update to work properly with recent FFMPEG
> > svn releases.
> > There is a patch avalaible, see this message of mine to this mlist:
> I'll go look for the patch and try to get it working.
I've re-attached the patch we're talking about to this message.
Please let me know if it don't work. ;)
> Thanks for your help!
You're welcome. :)
Best regards,
--
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 */
+#ifdef 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);
}