diff options
| author | Myles Borins | 2012-07-02 18:30:38 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-07-02 22:15:29 -0700 |
| commit | fd627a86c68b61d4cef11935ea268df4acb80020 (patch) | |
| tree | 013e193b7b9e7640458c32a50765374d0b2c377d /Library | |
| parent | 1a81ec617141863d15a3834cdccff02e003e78d0 (diff) | |
| download | homebrew-fd627a86c68b61d4cef11935ea268df4acb80020.tar.bz2 | |
Cairo: point to pixman explicitly
Closes #13172.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/cairo.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/cairo.rb b/Library/Formula/cairo.rb index 2309f929f..ac1e8dbfe 100644 --- a/Library/Formula/cairo.rb +++ b/Library/Formula/cairo.rb @@ -23,6 +23,10 @@ class Cairo < Formula def install ENV.universal_binary if ARGV.build_universal? + pixman = Formula.factory('pixman') + ENV['pixman_CFLAGS'] = "-I#{pixman.include}/pixman-1" + ENV['pixman_LIBS'] = "-L#{pixman.lib} -lpixman-1" + args = %W[ --disable-dependency-tracking --prefix=#{prefix} |
