summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-03-11 13:46:27 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-03-11 13:46:27 +0100
commit4f5d48abf5c4e39da8636b18db1cc9bfebd14d68 (patch)
treea4ed04ab9b9a32d93bc6b036fe111254029edb4b
parentbb43b542d686c40c08a6fd081cfb6fe50d72d383 (diff)
downloadnixpkgs-4f5d48abf5c4e39da8636b18db1cc9bfebd14d68.tar
nixpkgs-4f5d48abf5c4e39da8636b18db1cc9bfebd14d68.tar.gz
nixpkgs-4f5d48abf5c4e39da8636b18db1cc9bfebd14d68.tar.bz2
nixpkgs-4f5d48abf5c4e39da8636b18db1cc9bfebd14d68.tar.lz
nixpkgs-4f5d48abf5c4e39da8636b18db1cc9bfebd14d68.tar.xz
nixpkgs-4f5d48abf5c4e39da8636b18db1cc9bfebd14d68.tar.zst
nixpkgs-4f5d48abf5c4e39da8636b18db1cc9bfebd14d68.zip
thunderbird: Fix build on gcc 5
It was barfing due to --enable-stdcxx-compat. Not clear if/why we
still need this, so let's disable it. If necessary a fix is available
at https://bugzilla.mozilla.org/show_bug.cgi?id=1153109.
-rw-r--r--pkgs/applications/networking/mailreaders/thunderbird/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index 093e7a22b92..ce1335aaff2 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
                                "--enable-optimize" "--enable-strip" ])
     ++ [
       "--disable-javaxpcom"
-      "--enable-stdcxx-compat" # Avoid dependency on libstdc++ 4.7
+      #"--enable-stdcxx-compat" # Avoid dependency on libstdc++ 4.7
     ]
     ++ stdenv.lib.optional enableOfficialBranding "--enable-official-branding";
   in ''