guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: vlc: Build with modular qt.


From: Marius Bakke
Subject: 01/03: gnu: vlc: Build with modular qt.
Date: Wed, 30 Aug 2017 16:42:44 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 552c3e95f3f6344ed4d91c975798194fed380d14
Author: Marius Bakke <address@hidden>
Date:   Wed Aug 30 22:22:51 2017 +0200

    gnu: vlc: Build with modular qt.
    
    * gnu/packages/video.scm (vlc)[inputs]: Remove QT.  Add QTBASE and 
QTX11EXTRAS.
    [arguments]: Add CXXFLAGS=-std=gnu++11 to #:configure-flags.  Add
    'fix-qt-include' phase.
---
 gnu/packages/video.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index ce23e51..f485f7d 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -819,9 +819,8 @@ audio/video codec library.")
        ("perl" ,perl)
        ("pulseaudio" ,pulseaudio)
        ("python" ,python-wrapper)
-       ("qt" ,qt) ; FIXME: reenable modular qt after update - requires building
-       ;("qtbase" ,qtbase) with -std=gnu++11.
-       ;("qtx11extras" ,qtx11extras)
+       ("qtbase" ,qtbase)
+       ("qtx11extras" ,qtx11extras)
        ("sdl" ,sdl)
        ("sdl-image" ,sdl-image)
        ("speex" ,speex)
@@ -833,6 +832,7 @@ audio/video codec library.")
          ;; In our case, this led to a test failure:
          ;;   test_libvlc_equalizer: libvlc/equalizer.c:122: test_equalizer: 
Assertion `isnan(libvlc_audio_equalizer_get_amp_at_index (equalizer, u_bands))' 
failed.
          "ac_cv_c_fast_math=no"
+         "CXXFLAGS=-std=gnu++11"
 
          ,(string-append "LDFLAGS=-Wl,-rpath -Wl,"
                          (assoc-ref %build-inputs "ffmpeg")
@@ -856,6 +856,12 @@ audio/video codec library.")
              (substitute* "test/run_vlc.sh"
                           (("./vlc --ignore-config") "echo"))
              #t))
+         (add-before 'build 'fix-qt-include
+           (lambda _
+             ;; XXX Likely not needed for >2.2.6.
+             (substitute* "modules/gui/qt4/components/interface_widgets.cpp"
+               (("<qx11info_x11.h>") "<QtX11Extras/qx11info_x11.h>"))
+             #t))
          (add-after 'install 'regenerate-plugin-cache
            (lambda* (#:key outputs #:allow-other-keys)
              ;; The 'install-exec-hook' rule in the top-level Makefile.am



reply via email to

[Prev in Thread] Current Thread [Next in Thread]