diff options
author | Thomas Zander <riggs@FreeBSD.org> | 2014-06-07 13:24:16 +0000 |
---|---|---|
committer | Thomas Zander <riggs@FreeBSD.org> | 2014-06-07 13:24:16 +0000 |
commit | 5f06c72a18eea77579dbf562fa295a3cefdec29f (patch) | |
tree | c23184ecac62e290f31d7090c6eeb184ab2df89e /multimedia/mplayer/files | |
parent | 0cede931fdf1d2b1be8e7e0f8fdf9a3ea632e8a1 (diff) |
- Add CONFLICTS to mplayer to prevent install conflict with mplayer2 [1]
- Fix crash when trying to play certain videos with no audio in gmplayer [2]
- Improve non-options variable summary during build in pre-everything [2]
- Bump PORTREVISION in mplayer (the binary changes)
PR: 190027
Submitted by: rfg@tristatelogic.com [1], andre@albsmeier.net[2]
Approved by: mentors (implicit)
Notes
Notes:
svn path=/head/; revision=356900
Diffstat (limited to 'multimedia/mplayer/files')
-rw-r--r-- | multimedia/mplayer/files/patch-mplayer.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/multimedia/mplayer/files/patch-mplayer.c b/multimedia/mplayer/files/patch-mplayer.c new file mode 100644 index 000000000000..8fa3358f3950 --- /dev/null +++ b/multimedia/mplayer/files/patch-mplayer.c @@ -0,0 +1,12 @@ +--- mplayer.c.orig 2014-04-06 20:46:45.000000000 +0200 ++++ mplayer.c 2014-06-07 14:40:43.756655422 +0200 +@@ -3707,7 +3707,8 @@ + if (use_gui) { + if (!gui(GUI_SET_VIDEO, mpctx->sh_video)) + goto goto_next_file; +- gui(GUI_SET_AUDIO, mpctx->sh_audio); ++ if (mpctx->sh_audio) ++ gui(GUI_SET_AUDIO, mpctx->sh_audio); + } + #endif + |