aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/clutter.rb
diff options
context:
space:
mode:
authorJack Nagel2012-07-14 13:53:38 -0500
committerJack Nagel2012-07-14 14:16:29 -0500
commit03744647cc9271abc8c2cb368702fc328ee9a0ec (patch)
treeba7022930dc487b511d3816203f829e60d38650c /Library/Formula/clutter.rb
parent4791d7dfdb85ba19635bbc9933f324d688540e85 (diff)
downloadhomebrew-03744647cc9271abc8c2cb368702fc328ee9a0ec.tar.bz2
clutter: update configure options
Building the X11 backend fails with XQuartz (at least); patches welcome to remedy this. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/clutter.rb')
-rw-r--r--Library/Formula/clutter.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/clutter.rb b/Library/Formula/clutter.rb
index 13ea596f5..642244c97 100644
--- a/Library/Formula/clutter.rb
+++ b/Library/Formula/clutter.rb
@@ -17,9 +17,9 @@ class Clutter < Formula
def install
system "./configure", "--prefix=#{prefix}",
- "--with-flavour=osx",
- "--with-imagebackend=quartz",
- "--disable-introspection"
+ "--disable-introspection",
+ "--enable-quartz-backend",
+ "--disable-x11-backend"
system "make install"
end
end