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:
parent
82627f99bb
commit
e2b1de78c2
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue