librevenge: fixup build with gcc-7 (ignore a warning)

This commit is contained in:
Vladimír Čunát 2017-11-12 10:35:39 +01:00
parent c962702b57
commit 185cd2c60c
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -21,11 +21,10 @@ stdenv.mkDerivation {
inherit (s) url sha256;
};
# Clang generates warnings in Boost's header files
# Clang and gcc-7 generate warnings, and
# -Werror causes these warnings to be interpreted as errors
# Simplest solution: disable -Werror
configureFlags = if stdenv.cc.isClang
then [ "--disable-werror" ] else null;
configureFlags = [ "--disable-werror" ];
# Fix an issue with boost 1.59
# This is fixed upstream so please remove this when updating