aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cairo.rb
diff options
context:
space:
mode:
authorPhilip Paeps2012-01-14 17:51:33 +0100
committerJack Nagel2012-02-01 19:21:25 -0600
commit7d215c7d1b540b3dcd931063b6e4ef2f531f75d4 (patch)
treebcbf9a88fc5a0e04a126023ae68c8496bdd0516b /Library/Formula/cairo.rb
parent44890cc0a96599e8f71203983700ead8120454c5 (diff)
downloadhomebrew-7d215c7d1b540b3dcd931063b6e4ef2f531f75d4.tar.bz2
cairo: build with xcb support
XCB is a more "modern" way of communicating with X11 servers than straight XLib. It is required by some X11 applications. Enabling support in cairo should not affect applications which don't use it explicitly. Closes #9598. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/cairo.rb')
-rw-r--r--Library/Formula/cairo.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/cairo.rb b/Library/Formula/cairo.rb
index 564aecbb5..19e989f2b 100644
--- a/Library/Formula/cairo.rb
+++ b/Library/Formula/cairo.rb
@@ -16,7 +16,8 @@ class Cairo < Formula
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
- "--with-x"
+ "--with-x",
+ "--enable-xcb"
system "make install"
end
end