1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:27:34 +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' '--disable-strip'
'--enable-pie' '--enable-pie'
'--enable-sdl' '--enable-sdl'
'--enable-slirp'
'--enable-tcg' '--enable-tcg'
'--enable-tools' '--enable-tools'
) )
depends=( depends=(
'glib' 'glib'
'libslirp'
'pixman' 'pixman'
'SDL2' 'SDL2'
) )