Merge branch 'qt-5.7-fixes'

This commit is contained in:
Thomas Tuegel 2016-09-07 20:58:58 -05:00
commit 02bda5d2af
No known key found for this signature in database
GPG key ID: 22CBF5249D4B4D59
3 changed files with 8 additions and 0 deletions

View file

@ -76,5 +76,9 @@ stdenv.mkDerivation rec {
homepage = http://www.videolan.org/vlc/;
platforms = platforms.linux;
license = licenses.lgpl21Plus;
broken =
if withQt5
then builtins.compareVersions qtbase.version "5.7.0" >= 0
else false;
};
}

View file

@ -23,6 +23,8 @@ stdenv.mkDerivation rec {
"--enable-opengl"
];
CXXFLAGS = "-std=c++11";
enableParallelBuilding = true;
postInstall = ''

View file

@ -34,6 +34,8 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
CXXFLAGS = lib.optional qt5Support "-std=c++11";
configureFlags = with lib;
[
"--enable-xpdf-headers"