diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-26 09:18:00 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-26 09:18:00 +0000 |
commit | b20ae7c49098c1c2ebfb5c749e1fd8226beedc5e (patch) | |
tree | 9cdd4c51e0b943985c6e915b14b8ecaa67fc3e3d /multimedia/mplayer/files/patch-libvo-vo_md5.c | |
parent | BROKEN on alpha 5.x: Configure fails (diff) |
This update solves two issues which are important for many
users of mplayer:
o bktr driver working. Thanks to Arjan van Leeuwen
<avleeuwen@piwebs.com> and Simun Mikecin sime@logos.hr (For me
it doesn't work at all, but mplayer's tv never did :-) So I
rely on the reports of the users who are successful.)
o disables support for libdvdnav as it's not compatible with
the new version. The mplayer developers are informed and
hunt the problem.
o introduces a patch to fix -vo md5: patch-libvo-vo_md5.c
Thanks to Christopher Nehren <apeiron@comcast.net>
PR: ports/63363
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=102169
Diffstat (limited to 'multimedia/mplayer/files/patch-libvo-vo_md5.c')
-rw-r--r-- | multimedia/mplayer/files/patch-libvo-vo_md5.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/multimedia/mplayer/files/patch-libvo-vo_md5.c b/multimedia/mplayer/files/patch-libvo-vo_md5.c new file mode 100644 index 000000000000..fa2a5e5585f7 --- /dev/null +++ b/multimedia/mplayer/files/patch-libvo-vo_md5.c @@ -0,0 +1,11 @@ +--- libvo/vo_md5.c.orig Mon Nov 11 10:20:26 2002 ++++ libvo/vo_md5.c Sun Jan 11 02:30:52 2004 +@@ -56,7 +56,7 @@ + + video_out_pgm.flip_page(); + +- snprintf (buf2, 100, "md5sum %s", vo_pgm_filename); ++ snprintf (buf2, 100, "md5 %s", vo_pgm_filename); + f = popen (buf2, "r"); + i = fread (buf2, 1, sizeof(buf2), f); + pclose (f); |