GCC 4.4: Don't expect zlib when `langJava' is false.

svn path=/nixpkgs/trunk/; revision=16518
This commit is contained in:
Ludovic Courtès 2009-07-30 10:31:04 +00:00
parent b0e71363d1
commit 33c6204f95

View file

@ -125,15 +125,13 @@ stdenv.mkDerivation ({
CPATH = concatStrings
(intersperse ":" (map (x: x + "/include")
([ zlib ]
++ optional langJava boehmgc
(optionals langJava [ boehmgc zlib ]
++ optionals javaAwtGtk xlibs
++ optionals javaAwtGtk [ gmp mpfr ])));
LIBRARY_PATH = concatStrings
(intersperse ":" (map (x: x + "/lib")
([ zlib ]
++ optional langJava boehmgc
(optionals langJava [ boehmgc zlib ]
++ optionals javaAwtGtk xlibs
++ optionals javaAwtGtk [ gmp mpfr ])));