* Don't need to set CAIRO_CFLAGS anymore.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13061
This commit is contained in:
Eelco Dolstra
2008-10-14 12:08:07 +00:00
parent 5bc2dc536d
commit 5b45cce6c1
2 changed files with 3 additions and 8 deletions
+3 -3
View File
@@ -19,13 +19,13 @@ stdenv.mkDerivation {
buildInputs = [
pkgconfig x11 fontconfig freetype pixman
];
propagatedBuildInputs =
stdenv.lib.optional postscriptSupport zlib ++
stdenv.lib.optional pngSupport libpng;
configureFlags =
(if pdfSupport then ["--enable-pdf"] else []);
configureFlags = ["--disable-static"] ++
stdenv.lib.optional pdfSupport "--enable-pdf";
meta = {
description = "A 2D graphics library with support for multiple output devices";