From be6d0131c6059bd9123ae3d88447043d5e13b073 Mon Sep 17 00:00:00 2001 From: mid-kid Date: Tue, 21 Nov 2017 14:04:37 +0100 Subject: [PATCH] Update qemu to 2.10.1 --- satellites/qemu.sat | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/satellites/qemu.sat b/satellites/qemu.sat index 3881e2c..0b8b44b 100644 --- a/satellites/qemu.sat +++ b/satellites/qemu.sat @@ -1,13 +1,14 @@ import 'compile/configure' name=qemu -version=2.10.0 +version=2.10.1 update_url='http://www.qemu-project.org/download/' +define_option 'gtk3: Build with gtk3 support' define_option 'targets=all: Define what targets to build (space-separated list)' dlextract "http://download.qemu-project.org/$name-$version.tar.xz" \ - 'a89e3293cf69c32cf4be4188dfa25544' + '0c4d98038480c5c19a95990eb8d04a51' _ cd "$name-$version" @@ -19,6 +20,11 @@ else targets="--target-list=$(echo "$targets" | sed -e 's/ /,/g')" fi -compile_configure -- $targets +gtkabi='' +if option !gtk3; then + gtkabi='--with-gtkabi=2.0' +fi + +compile_configure -- $targets $gtkabi # vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: