mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: VLC: Fix build with libssh2 > 1.8.0.
* gnu/packages/video.scm (vlc)[arguments]: Adjust the faulty libssh2 feature detection macro.
This commit is contained in:
parent
1b17c23ebc
commit
10384f880a
1 changed files with 6 additions and 0 deletions
|
@ -1139,6 +1139,12 @@ (define-public vlc
|
|||
(substitute* "modules/gui/qt/components/simple_preferences.cpp"
|
||||
(("#include <QFont>") "#include <QFont>
|
||||
#include <QButtonGroup>"))
|
||||
|
||||
;; Fix build with libssh2 > 1.8.0:
|
||||
;; <https://trac.videolan.org/vlc/ticket/22060>
|
||||
;; <https://git.videolan.org/?p=vlc.git;a=commit;h=11449b5cd8b415768e010d9b7c1d6ba3cea21f82>
|
||||
(substitute* "modules/access/sftp.c"
|
||||
(("010801") "010900"))
|
||||
#t)))
|
||||
(add-after 'strip 'regenerate-plugin-cache
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue