From 5b11ce088fdef2f3f3af7896598ce030be350ba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karen/=E3=81=82=E3=81=91=E3=81=BF?= Date: Wed, 13 Oct 2021 11:18:50 -0700 Subject: [PATCH] qemu: Restore missing libutil dependency for OS X < 10.5. This allows QEMU to successfully build again on OS X 10.4. This dependency was previously added in commit cca45a2a3b50b9a9f4734ac9df824550610cca73, but was inadvertedly erroneously removed when the QEMU version was reverted to 2.2.1 in commit b5c0b675a39a576891547d7536447e7ddd3976d2. --- Library/Formula/qemu.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Formula/qemu.rb b/Library/Formula/qemu.rb index 7039ed87003..c02ffae6166 100644 --- a/Library/Formula/qemu.rb +++ b/Library/Formula/qemu.rb @@ -15,6 +15,7 @@ class Qemu < Formula depends_on "gnutls" depends_on "glib" depends_on "pixman" + depends_on "libutil" if MacOS.version < :leopard depends_on "vde" => :optional depends_on "sdl" => :optional depends_on "gtk+" => :optional