mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
fix build of opera on x86_64
svn path=/nixpkgs/trunk/; revision=14733
This commit is contained in:
parent
33089fcfdd
commit
e3eb124873
@ -8525,9 +8525,9 @@ let
|
||||
inherit fetchurl zlib glibc stdenv;
|
||||
# stdenv = overrideGCC stdenv gcc40;
|
||||
inherit (xlibs) libX11 libSM libICE libXt libXext;
|
||||
qt = qt3gcc33;
|
||||
#33motif = lesstif;
|
||||
libstdcpp5 = gcc33.gcc;
|
||||
qt = if (stdenv.system == "i686-linux") then qt3gcc33 else qt3;
|
||||
libstdcpp5 = (if (stdenv.system == "i686-linux") then gcc33 /* stdc++ 3.8 is used */ else gcc42).gcc;
|
||||
};
|
||||
|
||||
pan = import ../applications/networking/newsreaders/pan {
|
||||
|
Loading…
Reference in New Issue
Block a user