aboutsummaryrefslogtreecommitdiff
path: root/multimedia/vlc
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2017-02-18 15:11:37 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2017-02-18 15:11:37 +0000
commitb1b5d1a69090d1793ba1787cba5d2940fc150bca (patch)
tree64f70e78ba101edbe39e3fac87c1849d3f0f4956 /multimedia/vlc
parent8b1e6e9d2258a5478d5470e602f15f788f2b245a (diff)
downloadports-b1b5d1a69090d1793ba1787cba5d2940fc150bca.tar.gz
ports-b1b5d1a69090d1793ba1787cba5d2940fc150bca.zip
Add upstream patch to fix the build with the SKINS option after r434332.
PR: 217051
Notes
Notes: svn path=/head/; revision=434358
Diffstat (limited to 'multimedia/vlc')
-rw-r--r--multimedia/vlc/files/patch-git_a1e5e6427
1 files changed, 27 insertions, 0 deletions
diff --git a/multimedia/vlc/files/patch-git_a1e5e64 b/multimedia/vlc/files/patch-git_a1e5e64
new file mode 100644
index 000000000000..2cabfdda7690
--- /dev/null
+++ b/multimedia/vlc/files/patch-git_a1e5e64
@@ -0,0 +1,27 @@
+Only the skins2 bit is necessary, all other changes are already present in VLC
+2.2.4.
+
+From a1e5e6422d04cd3380bc5b10c86713fef0832aa3 Mon Sep 17 00:00:00 2001
+From: Tristan Matthews <le.businessman@gmail.com>
+Date: Wed, 2 Jul 2014 17:28:02 -0400
+Subject: [PATCH] Fix build for C++11
+
+C++11 requires a space between literal and identifier
+---
+ modules/gui/qt4/components/extended_panels.cpp | 4 ++--
+ modules/gui/skins2/src/dialogs.cpp | 2 +-
+ modules/video_filter/atmo/AtmoLiveView.cpp | 4 ++--
+ modules/video_filter/atmo/atmo.cpp | 2 +-
+ 4 files changed, 6 insertions(+), 6 deletions(-)
+
+--- modules/gui/skins2/src/dialogs.cpp
++++ modules/gui/skins2/src/dialogs.cpp
+@@ -212,7 +212,7 @@ void Dialogs::showChangeSkin()
+ void Dialogs::showPlaylistLoad()
+ {
+ showFileGeneric( _("Open playlist"),
+- _("Playlist Files|"EXTENSIONS_PLAYLIST"|"
++ _("Playlist Files|" EXTENSIONS_PLAYLIST "|"
+ "All Files|*"),
+ showPlaylistLoadCB, kOPEN );
+ }