From e2b1de78c24246487cc72ed786b629243c6ade8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 1 Sep 2010 08:37:28 +0000 Subject: [PATCH] Making firefox build on mips svn path=/nixpkgs/branches/stdenv-updates/; revision=23584 --- pkgs/applications/networking/browsers/firefox/3.6.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/firefox/3.6.nix b/pkgs/applications/networking/browsers/firefox/3.6.nix index 439d263d4de..f98e9465f82 100644 --- a/pkgs/applications/networking/browsers/firefox/3.6.nix +++ b/pkgs/applications/networking/browsers/firefox/3.6.nix @@ -40,7 +40,6 @@ rec { "--disable-necko-wifi" # maybe we want to enable this at some point ]; - xulrunner = stdenv.mkDerivation { name = "xulrunner-${xulVersion}"; @@ -58,6 +57,10 @@ rec { alsaLib nspr /* nss */ libnotify xlibs.pixman ]; + preConfigure = if stdenv.isMips then '' + export ac_cv_thread_keyword=no + '' else ""; + configureFlags = [ "--enable-application=xulrunner" "--disable-javaxpcom"