Merge branch 'qt-5.7-fixes'

This commit is contained in:
Thomas Tuegel
2016-09-07 20:58:58 -05:00
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"