From 46c3855f49ee9730f3df43e44f3ebe8a999a581a Mon Sep 17 00:00:00 2001 From: Jeffrey Wildman Date: Thu, 15 Jan 2015 22:08:25 -0500 Subject: [PATCH] Choose gthread to silence ucontext deprecation errors --- gtk-vnc.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk-vnc.rb b/gtk-vnc.rb index f818480..07df3dd 100644 --- a/gtk-vnc.rb +++ b/gtk-vnc.rb @@ -10,7 +10,7 @@ class GtkVnc < Formula depends_on "gtk+3" depends_on "gnutls" - #depends_on "glib" + depends_on "glib" #depends_on :x11 # if your formula requires any X11/XQuartz components # TODO: audio? @@ -22,6 +22,7 @@ class GtkVnc < Formula "--with-gtk=3.0", "--disable-vala", "--enable-introspection", + "--with-coroutine=gthread", "--prefix=#{prefix}" system "make", "install" end