1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

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'.
This commit is contained in:
Kenneth Myhra 2023-04-16 21:27:01 +02:00 committed by Linus Groh
parent ae075b3dff
commit 4ed71d5b40

View file

@ -10,11 +10,13 @@ configopts=(
'--disable-strip'
'--enable-pie'
'--enable-sdl'
'--enable-slirp'
'--enable-tcg'
'--enable-tools'
)
depends=(
'glib'
'libslirp'
'pixman'
'SDL2'
)