From 4ed71d5b40c0bf29277654d1a13e40ea9f12249d Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Sun, 16 Apr 2023 21:27:01 +0200 Subject: [PATCH] Ports: Add depends 'libslirp' and configopt '--enable-slirp' to QEMU This adds the dependency 'libslirp' and forces QEMU to pick up the dependency or fail compilation by adding the config option 'enable-slirp'. --- Ports/qemu/package.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Ports/qemu/package.sh b/Ports/qemu/package.sh index 78a7dca3a9..5197d46b0b 100755 --- a/Ports/qemu/package.sh +++ b/Ports/qemu/package.sh @@ -10,11 +10,13 @@ configopts=( '--disable-strip' '--enable-pie' '--enable-sdl' + '--enable-slirp' '--enable-tcg' '--enable-tools' ) depends=( 'glib' + 'libslirp' 'pixman' 'SDL2' )