1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

Making firefox build on mips

svn path=/nixpkgs/branches/stdenv-updates/; revision=23584
This commit is contained in:
Lluís Batlle i Rossell 2010-09-01 08:37:28 +00:00
parent 82627f99bb
commit e2b1de78c2

View file

@ -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"