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 Homebrew/homebrew#9598.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Philip Paeps 2012-01-14 17:51:33 +01:00 committed by Jack Nagel
parent 26c46cf6c1
commit 9339af2562

View file

@ -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