qt55.poppler: compile with -DQT_NO_DEBUG

Qt's debugging messages cause the qtbase.dev output to be retained by
poppler.out.
This commit is contained in:
Thomas Tuegel 2016-04-28 11:51:08 -05:00
parent 3f753a655d
commit f79ace2728

@ -29,11 +29,14 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig libiconv ] ++ libintlOrEmpty;
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
configureFlags = with lib;
[
"--enable-xpdf-headers"
"--enable-libcurl"
"--enable-zlib"
"--enable-build-type=release"
]
++ optionals minimal [ "--disable-poppler-glib" "--disable-poppler-cpp" ]
++ optional (!utils) "--disable-utils";