From c7d901c130cc1d711d152d9f2930488fe6858d07 Mon Sep 17 00:00:00 2001 From: Clément Lassieur Date: Mon, 28 May 2018 21:38:05 +0200 Subject: gnu: vlc: Fix build against Qt 5.11. * gnu/packages/video.scm (vlc)[arguments]: Add missing headers. --- gnu/packages/video.scm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 9ed0f4baed..317710c76b 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -886,6 +886,13 @@ audio/video codec library.") ;; XXX Likely not needed for >2.2.6. (substitute* "modules/gui/qt4/components/interface_widgets.cpp" (("") "")) + ;; Fix build against Qt 5.11. + (substitute* "modules/gui/qt4/actions_manager.cpp" + (("#include ") "#include +#include ")) + (substitute* "modules/gui/qt4/components/simple_preferences.cpp" + (("#include ") "#include +#include ")) #t))) (add-after 'install 'regenerate-plugin-cache (lambda* (#:key outputs #:allow-other-keys) -- cgit v1.2.3