diff options
author | Kenneth Myhra <kennethmyhra@gmail.com> | 2023-04-16 21:27:01 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-04-17 10:19:28 +0200 |
commit | 4ed71d5b40c0bf29277654d1a13e40ea9f12249d (patch) | |
tree | 8c035230456261df2fb9388eb6322e4f4ce2ca09 /Ports/qemu/package.sh | |
parent | ae075b3dff7368724eefefbff4be13867f1dce06 (diff) | |
download | serenity-4ed71d5b40c0bf29277654d1a13e40ea9f12249d.zip |
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'.
Diffstat (limited to 'Ports/qemu/package.sh')
-rwxr-xr-x | Ports/qemu/package.sh | 2 |
1 files changed, 2 insertions, 0 deletions
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' ) |