qt57.poppler: fix build

Packages that depend on Qt >= 5.7 must build using the C++11 standard.
wip/yesman
Thomas Tuegel 8 years ago
parent 26a2392594
commit 3445ab79a2
  1. 7
      pkgs/development/libraries/poppler/default.nix

@ -1,6 +1,8 @@
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, libiconv, libintlOrEmpty
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
, minimal ? false, qt4Support ? false, qt4 ? null, qt5Support ? false, qtbase ? null
, minimal ? false
, qt4Support ? false, qt4 ? null
, qt5Support ? false, qtbase ? null
, utils ? false, suffix ? "glib"
}:
@ -31,6 +33,9 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
# Any package depending on Qt >= 5.7 must build using the C++11 standard.
CXXFLAGS = lib.optional qt5Support "-std=c++11";
configureFlags = with lib;
[
"--enable-xpdf-headers"

Loading…
Cancel
Save