mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: vlc: Fix build against Qt 5.11.
* gnu/packages/video.scm (vlc)[arguments]: Add missing headers.
This commit is contained in:
parent
a338b6f51d
commit
c7d901c130
1 changed files with 7 additions and 0 deletions
|
@ -886,6 +886,13 @@ (define-public vlc
|
||||||
;; XXX Likely not needed for >2.2.6.
|
;; XXX Likely not needed for >2.2.6.
|
||||||
(substitute* "modules/gui/qt4/components/interface_widgets.cpp"
|
(substitute* "modules/gui/qt4/components/interface_widgets.cpp"
|
||||||
(("<qx11info_x11.h>") "<QtX11Extras/qx11info_x11.h>"))
|
(("<qx11info_x11.h>") "<QtX11Extras/qx11info_x11.h>"))
|
||||||
|
;; Fix build against Qt 5.11.
|
||||||
|
(substitute* "modules/gui/qt4/actions_manager.cpp"
|
||||||
|
(("#include <vlc_keys.h>") "#include <vlc_keys.h>
|
||||||
|
#include <QAction>"))
|
||||||
|
(substitute* "modules/gui/qt4/components/simple_preferences.cpp"
|
||||||
|
(("#include <QFont>") "#include <QFont>
|
||||||
|
#include <QButtonGroup>"))
|
||||||
#t)))
|
#t)))
|
||||||
(add-after 'install 'regenerate-plugin-cache
|
(add-after 'install 'regenerate-plugin-cache
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in a new issue