Revert "Fix icu4c expression for latest gcc (fixes #2341)"

This reverts commit d393c6c538.
The commit removed C++11 compatibility on darwin by overriding the
--std=c++0x flag in CXXFLAGS. Which lead to a failing build of mapnik,
which depends on the move constructors being available in the icu-lib.
Since it builds fine without the headerpad_max_install_names flag, we
simply undo the change that introduced this flag.
gstqt5
Josef Kemetmueller 2016-11-13 16:15:45 +01:00 committed by Christoph Hrdinka
parent c2b9404c02
commit 334a1a6f8a
1 changed files with 0 additions and 3 deletions

View File

@ -16,9 +16,6 @@ stdenv.mkDerivation ({
outputs = [ "out" "dev" ];
outputBin = "dev";
makeFlags = stdenv.lib.optionalString stdenv.isDarwin
"CXXFLAGS=-headerpad_max_install_names";
# FIXME: This fixes dylib references in the dylibs themselves, but
# not in the programs in $out/bin.
buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;