From 3be3ab20d9e0bcf25de2007ce88d5cd1fc25d61c Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 9 Aug 2012 01:05:21 -0500 Subject: [PATCH] cairo: always depend on our pixman Older versions of XQuartz, including the one distributed by Apple with OS X, contain an insufficient version of pixman for recent cairo. Potentially the :pixman dep could be taught to only delegate to XQuartz if it is up to date enough, but until then, always depend on our pixman. Fixes Homebrew/homebrew#14072. Signed-off-by: Jack Nagel --- Formula/cairo.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/cairo.rb b/Formula/cairo.rb index 98fbf7a590c..c4e04e1d03b 100644 --- a/Formula/cairo.rb +++ b/Formula/cairo.rb @@ -11,7 +11,7 @@ class Cairo < Formula # Can't currently pass :recommended to the :x11 dep. depends_on :libpng # => :recommended - depends_on :pixman + depends_on 'pixman' depends_on 'pkg-config' => :build depends_on 'xz'=> :build depends_on :x11 unless ARGV.include? '--without-x'