diff options
| author | Jack Nagel | 2012-08-09 01:05:21 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-08-09 01:07:09 -0500 |
| commit | 114a239a060d46347bcfcef7b4fd2deadfe0d157 (patch) | |
| tree | 1d1123cc0111f710166e660b67a7a17fdfccf55d /Library | |
| parent | b27d6483cba1f387be6fc59490cbfc771ffbe113 (diff) | |
| download | homebrew-114a239a060d46347bcfcef7b4fd2deadfe0d157.tar.bz2 | |
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 #14072.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/cairo.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/cairo.rb b/Library/Formula/cairo.rb index 98fbf7a59..c4e04e1d0 100644 --- a/Library/Formula/cairo.rb +++ b/Library/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' |
