gtk+3: Fix typo that breaks the gstgtk plugin
When building gst-plugins-bad --with-gtk+3, running gst-inspect-1.0 fails:
dlopen(/usr/local/lib/gstreamer-1.0/libgstgtksink.so, 2): Symbol not found: _g_string_appendi
This problem became visible due to 9d2746020a
Closes #4134.
Signed-off-by: Andrew Janke <janke@eilonwy.local>
This commit is contained in:
parent
ccc66325e8
commit
ab89247ac4
1 changed files with 3 additions and 0 deletions
|
@ -59,6 +59,9 @@ class Gtkx3 < Formula
|
|||
|
||||
args << "--enable-quartz-relocation" if build.with?("quartz-relocation")
|
||||
|
||||
# TODO: Remove when it fails. See https://git.gnome.org/browse/gtk+/commit/?id=74bd3f3810133d44f333aa5f8d02ae3de19a6834
|
||||
inreplace "gdk/quartz/gdkeventloop-quartz.c", "g_string_appendi", "g_string_append"
|
||||
|
||||
system "./configure", *args
|
||||
# necessary to avoid gtk-update-icon-cache not being found during make install
|
||||
bin.mkpath
|
||||
|
|
Loading…
Reference in a new issue